@tinkoff/eslint-config 1.13.1 → 1.25.2

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 CHANGED
@@ -3,6 +3,41 @@
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
+ ### [1.25.2](https://github.com/TinkoffCreditSystems/linters/compare/v1.25.1...v1.25.2) (2022-02-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Some rules was unused and don't help with development ([#172](https://github.com/TinkoffCreditSystems/linters/issues/172)) ([dca2c89](https://github.com/TinkoffCreditSystems/linters/commit/dca2c8998d6ebfc8b88bf90d812d0f3149854ce3))
12
+
13
+
14
+
15
+ ## [1.22.0](https://github.com/TinkoffCreditSystems/linters/compare/v1.21.0...v1.22.0) (2021-12-09)
16
+
17
+
18
+ ### Features
19
+
20
+ * **prettier-config:** upgrade to new prettier version ([#161](https://github.com/TinkoffCreditSystems/linters/issues/161)) ([419597f](https://github.com/TinkoffCreditSystems/linters/commit/419597f313bdd46f3b71e14779d55a7c7dd6a0ee))
21
+
22
+
23
+
24
+ ## [1.14.0](https://github.com/TinkoffCreditSystems/linters/compare/v1.13.2...v1.14.0) (2021-11-17)
25
+
26
+
27
+ ### Features
28
+
29
+ * **eslint-config-angular:** support member ordering ([a57a57d](https://github.com/TinkoffCreditSystems/linters/commit/a57a57d68d8b624da95f6b93d577f4d2adea0fd0))
30
+
31
+
32
+
33
+ ### [1.13.2](https://github.com/TinkoffCreditSystems/linters/compare/v1.13.1...v1.13.2) (2021-11-17)
34
+
35
+ **Note:** Version bump only for package @tinkoff/eslint-config
36
+
37
+
38
+
39
+
40
+
6
41
  ### [1.13.1](https://github.com/TinkoffCreditSystems/linters/compare/v1.13.0...v1.13.1) (2021-11-17)
7
42
 
8
43
  **Note:** Version bump only for package @tinkoff/eslint-config
package/internal/base.js CHANGED
@@ -50,7 +50,8 @@ module.exports = {
50
50
  ],
51
51
  'guard-for-in': 'off',
52
52
  'default-case': 'warn',
53
- 'no-plusplus': ['warn', { allowForLoopAfterthoughts: true }],
53
+ 'no-plusplus': 'off',
54
+ 'func-names': 'off',
54
55
  'consistent-return': 'warn',
55
56
  'vars-on-top': 'warn',
56
57
  'no-var': 'warn',
@@ -69,8 +70,8 @@ module.exports = {
69
70
  allowArrowFunctions: true,
70
71
  },
71
72
  ],
72
- 'max-depth': ['warn', 4],
73
- 'max-params': ['warn', 4],
73
+ 'max-depth': 'off',
74
+ 'max-params': 'off',
74
75
  'max-classes-per-file': ['error', 4],
75
76
  complexity: ['error', 25],
76
77
  'max-statements': ['error', 25],
@@ -11,6 +11,7 @@ module.exports = {
11
11
  'prefer-promise-reject-errors': 'warn',
12
12
  'import/no-unresolved': 'off',
13
13
  'import/extensions': 'off',
14
+ '@typescript-eslint/no-shadow': 'off',
14
15
  },
15
16
  },
16
17
  ],
package/jest.js CHANGED
@@ -14,5 +14,6 @@ module.exports = {
14
14
  ],
15
15
  },
16
16
  ],
17
+ 'jest/no-disabled-tests': 'off',
17
18
  },
18
19
  };
package/package.json CHANGED
@@ -1,43 +1,43 @@
1
1
  {
2
- "name": "@tinkoff/eslint-config",
3
- "version": "1.13.1",
4
- "description": "Tinkoff ESLint configs to rule them all",
5
- "license": "Apache-2.0",
6
- "keywords": [
7
- "eslint",
8
- "eslintconfig",
9
- "eslint-config"
10
- ],
11
- "scripts": {},
12
- "main": "index.js",
13
- "author": {
14
- "name": "Tinkoff Team",
15
- "email": "frontend@tinkoff.ru"
16
- },
17
- "repository": {
18
- "type": "git",
19
- "url": "https://github.com/TinkoffCreditSystems/linters.git"
20
- },
21
- "dependencies": {
22
- "@babel/eslint-parser": "^7.14.7",
23
- "@babel/eslint-plugin": "^7.14.5",
24
- "@typescript-eslint/eslint-plugin": "^5.3.0",
25
- "@typescript-eslint/parser": "^5.3.0",
26
- "eslint": "^7.5.0",
27
- "eslint-config-airbnb-base": "^14.2.0",
28
- "eslint-config-prettier": "^6.11.0",
29
- "eslint-import-resolver-typescript": "^2.0.0",
30
- "eslint-import-resolver-webpack": "^0.12.2",
31
- "eslint-plugin-eslint-comments": "^3.2.0",
32
- "eslint-plugin-import": "^2.22.0",
33
- "eslint-plugin-jest": "^23.18.0",
34
- "eslint-plugin-prettier": "^3.1.4",
35
- "eslint-plugin-promise": "^4.2.1",
36
- "eslint-plugin-sort-class-members": "^1.7.0",
37
- "prettier": "2.4.1"
38
- },
39
- "publishConfig": {
40
- "access": "public"
41
- },
42
- "gitHead": "1658eef0af70bae2abcbc5049a4fa75a7a22a063"
2
+ "name": "@tinkoff/eslint-config",
3
+ "version": "1.25.2",
4
+ "description": "Tinkoff ESLint configs to rule them all",
5
+ "license": "Apache-2.0",
6
+ "keywords": [
7
+ "eslint",
8
+ "eslintconfig",
9
+ "eslint-config"
10
+ ],
11
+ "scripts": {},
12
+ "main": "index.js",
13
+ "author": {
14
+ "name": "Tinkoff Team",
15
+ "email": "frontend@tinkoff.ru"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/TinkoffCreditSystems/linters.git"
20
+ },
21
+ "dependencies": {
22
+ "@babel/eslint-parser": "^7.14.7",
23
+ "@babel/eslint-plugin": "^7.14.5",
24
+ "@typescript-eslint/eslint-plugin": "^5.4.0",
25
+ "@typescript-eslint/parser": "^5.4.0",
26
+ "eslint": "^7.5.0",
27
+ "eslint-config-airbnb-base": "^14.2.0",
28
+ "eslint-config-prettier": "^6.11.0",
29
+ "eslint-import-resolver-typescript": "^2.0.0",
30
+ "eslint-import-resolver-webpack": "^0.12.2",
31
+ "eslint-plugin-eslint-comments": "^3.2.0",
32
+ "eslint-plugin-import": "^2.22.0",
33
+ "eslint-plugin-jest": "^23.18.0",
34
+ "eslint-plugin-prettier": "^3.1.4",
35
+ "eslint-plugin-promise": "^4.2.1",
36
+ "eslint-plugin-sort-class-members": "^1.7.0",
37
+ "prettier": "2.5.1"
38
+ },
39
+ "publishConfig": {
40
+ "access": "public"
41
+ },
42
+ "gitHead": "fe13053936f5f6b507fb42b7b0e78fa021f2a9f3"
43
43
  }