Skip to content

Commit bd46856

Browse files
authored
Merge pull request #2 from aditosoftware/version_bump
chore: updated versions and added CHANGELOG.md
2 parents 76cab1b + b14c4a8 commit bd46856

File tree

5 files changed

+159
-106
lines changed

5 files changed

+159
-106
lines changed

.github/pull_request_template.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Please check before merging
33

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

78
# Description

CHANGELOG.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
9+
## 1.0.6
10+
11+
### Changed
12+
13+
- Upgraded dependencies:
14+
- @typescript-eslint/eslint-plugin to 8.5.0
15+
- @typescript-eslint/parser to 8.5.0
16+
- @stylistic/eslint-plugin to 2.8.0
17+
18+
## 1.0.5
19+
20+
### Changed
21+
22+
- Upgraded dependencies:
23+
- @typescript-eslint/eslint-plugin to 8.4.0
24+
- @typescript-eslint/parser to 8.4.0
25+
- @stylistic/eslint-plugin to 2.7.2
26+
- eslint-plugin-jsdoc to 50.2.2
27+
28+
## 1.0.4
29+
30+
### Changed
31+
32+
- Upgraded dependencies:
33+
- @typescript-eslint/eslint-plugin to 8.0.0
34+
- @typescript-eslint/parser to 8.0.0
35+
- @stylistic/eslint-plugin to 2.6.0
36+
- eslint-plugin-chai-friendly to 1.0.1
37+
- eslint-plugin-jsdoc to 48.10.2
38+
- eslint-plugin-tsdoc to 0.3.0
39+
40+
## 1.0.3
41+
42+
### Changed
43+
44+
- Reduced the level for prettier from `error` to `warn`
45+
46+
## 1.0.2
47+
48+
### Added
49+
50+
- Added `eslint-config-prettier` and its recommended configuration
51+
- Added `eslint-plugin-chai-expect` and its recommended configuration
52+
- Added `eslint-plugin-deprecation` and its recommended configuration
53+
- Added `eslint-plugin-prettier` and its recommended configuration. **Note:**
54+
You need to add the following to your `.prettierrc` file in order to have you eslint rule work as intended:
55+
56+
```json
57+
{
58+
"endOfLine": "auto"
59+
}
60+
```
61+
62+
## 1.0.1
63+
64+
### Added
65+
66+
- Added `eslint-plugin-chai-friendly` and its recommended configuration
67+
68+
## 1.0.0
69+
70+
### Added
71+
72+
- Initial release

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ import config from "@aditosoftware/eslint-config-adito-platform";
1414
export default [...config];
1515
```
1616

17+
In order to have the prettier rules working, you need to add the following to your `.prettierrc` file:
18+
```json
19+
{
20+
"endOfLine": "auto"
21+
}
22+
```
1723

1824
## Notes
1925

0 commit comments

Comments
 (0)