@taiga-ui/eslint-plugin-experience-next 0.421.0 → 0.422.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 -1
- package/package.json +5 -5
- package/rules/convention.d.ts +1 -1
package/index.esm.js
CHANGED
|
@@ -156,9 +156,9 @@ const TUI_MEMBER_ORDERING_CONVENTION = [
|
|
|
156
156
|
'private-decorated-field',
|
|
157
157
|
'protected-abstract-field',
|
|
158
158
|
'public-abstract-field',
|
|
159
|
-
'#private-instance-field',
|
|
160
159
|
'private-decorated-field',
|
|
161
160
|
'private-instance-field',
|
|
161
|
+
'#private-instance-field',
|
|
162
162
|
[
|
|
163
163
|
'protected-decorated-field',
|
|
164
164
|
'public-decorated-field',
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/eslint-plugin-experience-next",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.422.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
|
"type": "module",
|
|
7
7
|
"devDependencies": {
|
|
8
8
|
"@typescript-eslint/rule-tester": "8.55.0",
|
|
9
|
-
"glob": "13.0.
|
|
9
|
+
"glob": "13.0.6"
|
|
10
10
|
},
|
|
11
11
|
"peerDependencies": {
|
|
12
12
|
"@eslint/compat": "^2.0.2",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"angular-eslint": "^20.7.0",
|
|
21
21
|
"eslint": "^9.39.2",
|
|
22
22
|
"eslint-config-prettier": "^10.1.7",
|
|
23
|
-
"eslint-plugin-compat": "^
|
|
23
|
+
"eslint-plugin-compat": "^7.0.1",
|
|
24
24
|
"eslint-plugin-de-morgan": "^2.0.0",
|
|
25
25
|
"eslint-plugin-decorator-position": "^6.0.0",
|
|
26
26
|
"eslint-plugin-file-progress": "^3.0.2",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"eslint-plugin-promise": "^7.2.1",
|
|
34
34
|
"eslint-plugin-regexp": "^3.0.0",
|
|
35
35
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
36
|
-
"eslint-plugin-sonarjs": "^
|
|
37
|
-
"eslint-plugin-unicorn": "^
|
|
36
|
+
"eslint-plugin-sonarjs": "^4.0.0",
|
|
37
|
+
"eslint-plugin-unicorn": "^63.0.0",
|
|
38
38
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
39
39
|
"glob": "*",
|
|
40
40
|
"globals": "^17.3.0",
|
package/rules/convention.d.ts
CHANGED
|
@@ -36,4 +36,4 @@ export declare const TUI_CUSTOM_TAIGA_NAMING_CONVENTION: readonly [{
|
|
|
36
36
|
readonly prefix: readonly ["tui", "provide"];
|
|
37
37
|
readonly selector: "function";
|
|
38
38
|
}];
|
|
39
|
-
export declare const TUI_MEMBER_ORDERING_CONVENTION: readonly ["signature", "readonly-signature", "public-static-field", "protected-static-field", "#private-static-field", "private-static-field", "private-decorated-field", "protected-abstract-field", "public-abstract-field", "
|
|
39
|
+
export declare const TUI_MEMBER_ORDERING_CONVENTION: readonly ["signature", "readonly-signature", "public-static-field", "protected-static-field", "#private-static-field", "private-static-field", "private-decorated-field", "protected-abstract-field", "public-abstract-field", "private-decorated-field", "private-instance-field", "#private-instance-field", readonly ["protected-decorated-field", "public-decorated-field", "protected-instance-field", "public-instance-field"], "private-constructor", "protected-constructor", "public-constructor", "public-static-method", "protected-static-method", "private-static-method", "#private-static-method", "public-abstract-get", "public-abstract-set", "protected-abstract-get", "protected-abstract-set", "public-abstract-method", "protected-abstract-method", readonly ["public-decorated-set", "public-decorated-get"], readonly ["public-set", "public-get"], "public-decorated-method", "public-instance-method", readonly ["protected-decorated-set", "protected-decorated-get"], readonly ["protected-set", "protected-get"], "protected-decorated-method", "protected-instance-method", readonly ["private-decorated-set", "private-decorated-get"], readonly ["private-set", "private-get"], "private-decorated-method", "private-instance-method", "#private-instance-method"];
|