@taiga-ui/eslint-plugin-experience-next 0.547.0 → 0.549.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/index.esm.js +1 -2
- package/package.json +9 -9
- package/rules/convention.d.ts +2 -2
package/index.esm.js
CHANGED
|
@@ -373,7 +373,7 @@ const TUI_RECOMMENDED_NAMING_CONVENTION = [
|
|
|
373
373
|
{
|
|
374
374
|
filter: {
|
|
375
375
|
match: true,
|
|
376
|
-
regex:
|
|
376
|
+
regex: '^(Infinity|NaN|Number|Math)$',
|
|
377
377
|
},
|
|
378
378
|
format: null,
|
|
379
379
|
selector: 'classProperty',
|
|
@@ -1249,7 +1249,6 @@ var recommended = defineConfig([
|
|
|
1249
1249
|
'@angular-eslint/directive-selector': 'error',
|
|
1250
1250
|
'@angular-eslint/no-async-lifecycle-method': 'error',
|
|
1251
1251
|
'@angular-eslint/no-attribute-decorator': 'error',
|
|
1252
|
-
'@angular-eslint/no-conflicting-lifecycle': 'error',
|
|
1253
1252
|
'@angular-eslint/no-developer-preview': 'off',
|
|
1254
1253
|
'@angular-eslint/no-duplicates-in-metadata-arrays': 'error',
|
|
1255
1254
|
'@angular-eslint/no-empty-lifecycle-method': 'error',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/eslint-plugin-experience-next",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.549.0",
|
|
4
4
|
"description": "An ESLint plugin to enforce a consistent code styles across taiga-ui projects",
|
|
5
5
|
"homepage": "https://github.com/taiga-family/toolkit#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -43,25 +43,25 @@
|
|
|
43
43
|
"eslint-plugin-file-progress": "3.0.2",
|
|
44
44
|
"eslint-plugin-import": "2.32.0",
|
|
45
45
|
"eslint-plugin-jest": "29.15.2",
|
|
46
|
-
"eslint-plugin-package-json": "1.
|
|
47
|
-
"eslint-plugin-perfectionist": "5.9.
|
|
46
|
+
"eslint-plugin-package-json": "1.5.0",
|
|
47
|
+
"eslint-plugin-perfectionist": "5.9.1",
|
|
48
48
|
"eslint-plugin-playwright": "2.10.4",
|
|
49
49
|
"eslint-plugin-prettier": "5.5.6",
|
|
50
50
|
"eslint-plugin-promise": "7.3.0",
|
|
51
51
|
"eslint-plugin-regexp": "3.1.0",
|
|
52
52
|
"eslint-plugin-simple-import-sort": "13.0.0",
|
|
53
|
-
"eslint-plugin-sonarjs": "4.0
|
|
54
|
-
"eslint-plugin-unicorn": "
|
|
53
|
+
"eslint-plugin-sonarjs": "4.1.0",
|
|
54
|
+
"eslint-plugin-unicorn": "65.0.1",
|
|
55
55
|
"eslint-plugin-unused-imports": "4.4.1",
|
|
56
|
-
"globals": "17.
|
|
57
|
-
"typescript-eslint": "8.
|
|
56
|
+
"globals": "17.7.0",
|
|
57
|
+
"typescript-eslint": "8.62.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@typescript-eslint/rule-tester": "8.
|
|
60
|
+
"@typescript-eslint/rule-tester": "8.62.0"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"eslint": "^9.39.4",
|
|
64
|
-
"typescript": ">=5.7.0 <
|
|
64
|
+
"typescript": ">=5.7.0 <7.0.0"
|
|
65
65
|
},
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"access": "public"
|
package/rules/convention.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export declare const TUI_RECOMMENDED_NAMING_CONVENTION: readonly [{
|
|
|
7
7
|
}, {
|
|
8
8
|
readonly filter: {
|
|
9
9
|
readonly match: true;
|
|
10
|
-
readonly regex:
|
|
10
|
+
readonly regex: "^(Infinity|NaN|Number|Math)$";
|
|
11
11
|
};
|
|
12
12
|
readonly format: null;
|
|
13
13
|
readonly selector: "classProperty";
|
|
@@ -38,7 +38,7 @@ export declare const TUI_CUSTOM_TAIGA_NAMING_CONVENTION: readonly [{
|
|
|
38
38
|
}, {
|
|
39
39
|
readonly filter: {
|
|
40
40
|
readonly match: true;
|
|
41
|
-
readonly regex:
|
|
41
|
+
readonly regex: "^(Infinity|NaN|Number|Math)$";
|
|
42
42
|
};
|
|
43
43
|
readonly format: null;
|
|
44
44
|
readonly selector: "classProperty";
|