@taiga-ui/eslint-plugin-experience-next 0.251.0 → 0.252.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/eslint.config.js CHANGED
@@ -224,7 +224,7 @@ export default tseslint.config(progress.configs['recommended-ci'], require('esli
224
224
  },
225
225
  },
226
226
  ],
227
- '@typescript-eslint/max-params': ['error', { countVoidThis: true, max: 3 }],
227
+ '@typescript-eslint/max-params': ['error', { countVoidThis: true, max: 5 }],
228
228
  '@typescript-eslint/member-ordering': [
229
229
  'error',
230
230
  {
@@ -519,7 +519,6 @@ export default tseslint.config(progress.configs['recommended-ci'], require('esli
519
519
  'import/newline-after-import': ['error', { count: 1 }],
520
520
  'import/no-absolute-path': 'error',
521
521
  'import/no-cycle': 'error',
522
- 'import/no-deprecated': 'error',
523
522
  'import/no-duplicates': 'error',
524
523
  'import/no-mutable-exports': 'error',
525
524
  'import/no-self-import': 'error',
@@ -924,6 +923,7 @@ export default tseslint.config(progress.configs['recommended-ci'], require('esli
924
923
  'func-names': 'off',
925
924
  'global-require': 'off',
926
925
  'grouped-accessor-pairs': 'off',
926
+ 'import/export': 'off',
927
927
  'import/exports-last': 'off',
928
928
  'import/extensions': 'off',
929
929
  'import/no-default-export': 'off',
@@ -935,7 +935,6 @@ export default tseslint.config(progress.configs['recommended-ci'], require('esli
935
935
  'import/prefer-default-export': 'off',
936
936
  'lines-between-class-members': 'off',
937
937
  'max-classes-per-file': 'off',
938
- 'max-params': 'off',
939
938
  'max-statements': 'off',
940
939
  'no-await-in-loop': 'off',
941
940
  'no-bitwise': 'off',
package/eslint.config.ts CHANGED
@@ -241,7 +241,7 @@ export default tseslint.config(
241
241
  },
242
242
  },
243
243
  ],
244
- '@typescript-eslint/max-params': ['error', {countVoidThis: true, max: 3}],
244
+ '@typescript-eslint/max-params': ['error', {countVoidThis: true, max: 5}],
245
245
  '@typescript-eslint/member-ordering': [
246
246
  'error',
247
247
  {
@@ -538,7 +538,6 @@ export default tseslint.config(
538
538
  'import/newline-after-import': ['error', {count: 1}],
539
539
  'import/no-absolute-path': 'error',
540
540
  'import/no-cycle': 'error',
541
- 'import/no-deprecated': 'error',
542
541
  'import/no-duplicates': 'error',
543
542
  'import/no-mutable-exports': 'error',
544
543
  'import/no-self-import': 'error',
@@ -966,6 +965,7 @@ export default tseslint.config(
966
965
  'func-names': 'off',
967
966
  'global-require': 'off',
968
967
  'grouped-accessor-pairs': 'off',
968
+ 'import/export': 'off',
969
969
  'import/exports-last': 'off',
970
970
  'import/extensions': 'off',
971
971
  'import/no-default-export': 'off',
@@ -977,7 +977,6 @@ export default tseslint.config(
977
977
  'import/prefer-default-export': 'off',
978
978
  'lines-between-class-members': 'off',
979
979
  'max-classes-per-file': 'off',
980
- 'max-params': 'off',
981
980
  'max-statements': 'off',
982
981
  'no-await-in-loop': 'off',
983
982
  'no-bitwise': 'off',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ui/eslint-plugin-experience-next",
3
- "version": "0.251.0",
3
+ "version": "0.252.0",
4
4
  "description": "An ESLint plugin to enforce a consistent code styles across taiga-ui projects",
5
5
  "license": "Apache-2.0",
6
6
  "main": "eslint.config.ts",
@@ -17,15 +17,15 @@
17
17
  "eslint-plugin-file-progress": ">=3.0.1",
18
18
  "eslint-plugin-import": ">=2.31.0",
19
19
  "eslint-plugin-jest": ">=28.11.0",
20
- "eslint-plugin-perfectionist": ">=4.8.0",
20
+ "eslint-plugin-perfectionist": ">=4.9.0",
21
21
  "eslint-plugin-playwright": ">=2.2.0",
22
22
  "eslint-plugin-prettier": ">=5.2.3",
23
23
  "eslint-plugin-promise": ">=7.2.1",
24
24
  "eslint-plugin-simple-import-sort": ">=12.1.1",
25
- "eslint-plugin-sonarjs": ">=3.0.1",
25
+ "eslint-plugin-sonarjs": ">=3.0.2",
26
26
  "eslint-plugin-unicorn": ">=56.0.1",
27
27
  "eslint-plugin-unused-imports": ">=4.1.4",
28
- "globals": ">=15.14.0",
28
+ "globals": ">=15.15.0",
29
29
  "typescript-eslint": ">=8.24.0"
30
30
  },
31
31
  "publishConfig": {