@tinkoff/eslint-config 3.0.0 → 4.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
### [4.1.1](https://github.com/tramvaijs/linters/compare/v4.1.0...v4.1.1) (2024-06-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **eslint-config:** move prettier back to deps ([050843a](https://github.com/tramvaijs/linters/commit/050843a4a95476402c4a5338e0c261b0866401b2))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [4.0.0](https://github.com/tramvaijs/linters/compare/v3.1.1...v4.0.0) (2024-05-27)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* **eslint-config:** add prettier v3 support ([acb4e2b](https://github.com/tramvaijs/linters/commit/acb4e2b9c0e1690a1af70a07c71eb94dad575465))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
## [3.0.0](https://github.com/tramvaijs/linters/compare/v2.0.5...v3.0.0) (2024-05-02)
|
|
7
25
|
|
|
8
26
|
**Note:** Version bump only for package @tinkoff/eslint-config
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tinkoff/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "ESLint configs to rule them all",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@typescript-eslint/parser": "^6.7.2",
|
|
22
22
|
"eslint": "^8.38.0",
|
|
23
23
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
24
|
-
"eslint-config-prettier": "^
|
|
24
|
+
"eslint-config-prettier": "^9.1.0",
|
|
25
25
|
"eslint-import-resolver-typescript": "^3.5.5",
|
|
26
26
|
"eslint-import-resolver-webpack": "^0.13.2",
|
|
27
27
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
28
28
|
"eslint-plugin-import": "^2.27.5",
|
|
29
29
|
"eslint-plugin-jest": "^27.2.1",
|
|
30
|
-
"eslint-plugin-prettier": "^
|
|
30
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
31
31
|
"eslint-plugin-promise": "^6.1.1",
|
|
32
32
|
"eslint-plugin-sort-class-members": "^1.17.1",
|
|
33
|
-
"prettier": "2.
|
|
33
|
+
"prettier": "3.2.5"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"eslint-formatter-codeframe": "^7.32.1"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "f2e6a9033ca2d3b3cddd29a4842357d4dcc97c61"
|
|
42
42
|
}
|