@tinkoff/eslint-config 2.0.0 → 3.0.0
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 +17 -0
- package/internal/typescript.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
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
|
+
## [3.0.0](https://github.com/tramvaijs/linters/compare/v2.0.5...v3.0.0) (2024-05-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @tinkoff/eslint-config
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### [2.0.3](https://github.com/tramvaijs/linters/compare/v2.0.2...v2.0.3) (2024-03-13)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **eslint-config:** disable plain rules for typescript ([7dfd576](https://github.com/tramvaijs/linters/commit/7dfd576122ad295c00a4bd62be1b1dc14c33318f))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
## [2.0.0](https://github.com/tramvaijs/linters/compare/v1.54.4...v2.0.0) (2023-11-07)
|
|
7
24
|
|
|
8
25
|
|
package/internal/typescript.js
CHANGED
|
@@ -117,6 +117,7 @@ module.exports = {
|
|
|
117
117
|
},
|
|
118
118
|
],
|
|
119
119
|
'@typescript-eslint/ban-ts-comment': 'warn',
|
|
120
|
+
'no-empty-function': 'off',
|
|
120
121
|
'@typescript-eslint/no-empty-function': 'warn',
|
|
121
122
|
// standard no-unused-expressions don't understand optional chaining from ts
|
|
122
123
|
'no-unused-expressions': 'off',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tinkoff/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "ESLint configs to rule them all",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"eslint-formatter-codeframe": "^7.32.1"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "3a158b4aa324a275938658f7f5745fe301aca3db"
|
|
42
42
|
}
|