@taiga-ui/eslint-plugin-experience-next 0.330.0 → 0.332.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.cjs.js +6 -2
- package/index.esm.js +6 -2
- package/package.json +3 -3
- package/rules/convention.d.ts +1 -1
package/index.cjs.js
CHANGED
|
@@ -124,8 +124,12 @@ const TUI_MEMBER_ORDERING_CONVENTION = [
|
|
|
124
124
|
'#private-instance-field',
|
|
125
125
|
'private-decorated-field',
|
|
126
126
|
'private-instance-field',
|
|
127
|
-
[
|
|
128
|
-
|
|
127
|
+
[
|
|
128
|
+
'protected-decorated-field',
|
|
129
|
+
'public-decorated-field',
|
|
130
|
+
'protected-instance-field',
|
|
131
|
+
'public-instance-field',
|
|
132
|
+
],
|
|
129
133
|
'private-constructor',
|
|
130
134
|
'protected-constructor',
|
|
131
135
|
'public-constructor',
|
package/index.esm.js
CHANGED
|
@@ -119,8 +119,12 @@ const TUI_MEMBER_ORDERING_CONVENTION = [
|
|
|
119
119
|
'#private-instance-field',
|
|
120
120
|
'private-decorated-field',
|
|
121
121
|
'private-instance-field',
|
|
122
|
-
[
|
|
123
|
-
|
|
122
|
+
[
|
|
123
|
+
'protected-decorated-field',
|
|
124
|
+
'public-decorated-field',
|
|
125
|
+
'protected-instance-field',
|
|
126
|
+
'public-instance-field',
|
|
127
|
+
],
|
|
124
128
|
'private-constructor',
|
|
125
129
|
'protected-constructor',
|
|
126
130
|
'public-constructor',
|
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.332.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": "./index.cjs.js",
|
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
"@stylistic/eslint-plugin": "^5.4.0",
|
|
17
17
|
"@types/glob": "*",
|
|
18
18
|
"angular-eslint": "^20.3.0",
|
|
19
|
-
"eslint": "^9.
|
|
19
|
+
"eslint": "^9.37.0",
|
|
20
20
|
"eslint-config-prettier": "^10.1.7",
|
|
21
21
|
"eslint-plugin-de-morgan": "^2.0.0",
|
|
22
22
|
"eslint-plugin-decorator-position": "^6.0.0",
|
|
23
23
|
"eslint-plugin-file-progress": "^3.0.2",
|
|
24
24
|
"eslint-plugin-import": "^2.32.0",
|
|
25
25
|
"eslint-plugin-jest": "^29.0.1",
|
|
26
|
-
"eslint-plugin-perfectionist": "^4.15.
|
|
26
|
+
"eslint-plugin-perfectionist": "^4.15.1",
|
|
27
27
|
"eslint-plugin-playwright": "^2.2.2",
|
|
28
28
|
"eslint-plugin-prettier": "^5.5.4",
|
|
29
29
|
"eslint-plugin-promise": "^7.2.1",
|
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", "#private-instance-field", "private-decorated-field", "private-instance-field", readonly ["protected-decorated-field", "public-decorated-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-instance-field", "private-decorated-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"];
|