Skip to content

Commit

Permalink
Merge pull request #2 from aditosoftware/version_bump
Browse files Browse the repository at this point in the history
chore: updated versions and added CHANGELOG.md
  • Loading branch information
rH4rtinger authored Sep 12, 2024
2 parents 76cab1b + b14c4a8 commit bd46856
Show file tree
Hide file tree
Showing 5 changed files with 159 additions and 106 deletions.
1 change: 1 addition & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Please check before merging

- [ ] Is the content of the `README.md` file still up-to-date?
- [ ] Have you added an entry to the `CHANGELOG.md`?
- [ ] Is the pull request title written in the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) format?

# Description
Expand Down
72 changes: 72 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## 1.0.6

### Changed

- Upgraded dependencies:
- @typescript-eslint/eslint-plugin to 8.5.0
- @typescript-eslint/parser to 8.5.0
- @stylistic/eslint-plugin to 2.8.0

## 1.0.5

### Changed

- Upgraded dependencies:
- @typescript-eslint/eslint-plugin to 8.4.0
- @typescript-eslint/parser to 8.4.0
- @stylistic/eslint-plugin to 2.7.2
- eslint-plugin-jsdoc to 50.2.2

## 1.0.4

### Changed

- Upgraded dependencies:
- @typescript-eslint/eslint-plugin to 8.0.0
- @typescript-eslint/parser to 8.0.0
- @stylistic/eslint-plugin to 2.6.0
- eslint-plugin-chai-friendly to 1.0.1
- eslint-plugin-jsdoc to 48.10.2
- eslint-plugin-tsdoc to 0.3.0

## 1.0.3

### Changed

- Reduced the level for prettier from `error` to `warn`

## 1.0.2

### Added

- Added `eslint-config-prettier` and its recommended configuration
- Added `eslint-plugin-chai-expect` and its recommended configuration
- Added `eslint-plugin-deprecation` and its recommended configuration
- Added `eslint-plugin-prettier` and its recommended configuration. **Note:**
You need to add the following to your `.prettierrc` file in order to have you eslint rule work as intended:

```json
{
"endOfLine": "auto"
}
```

## 1.0.1

### Added

- Added `eslint-plugin-chai-friendly` and its recommended configuration

## 1.0.0

### Added

- Initial release
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ import config from "@aditosoftware/eslint-config-adito-platform";
export default [...config];
```

In order to have the prettier rules working, you need to add the following to your `.prettierrc` file:
```json
{
"endOfLine": "auto"
}
```

## Notes

Expand Down
Loading

0 comments on commit bd46856

Please sign in to comment.