@taiga-ui/eslint-plugin-experience-next 0.273.0 → 0.275.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 +10 -3
- package/package.json +5 -5
package/index.esm.js
CHANGED
|
@@ -28,7 +28,7 @@ function getDefaultExportFromCjs (x) {
|
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
var name$1 = "@eslint/js";
|
|
31
|
-
var version$1 = "9.25.
|
|
31
|
+
var version$1 = "9.25.1";
|
|
32
32
|
var require$$0 = {
|
|
33
33
|
name: name$1,
|
|
34
34
|
version: version$1};
|
|
@@ -549,14 +549,14 @@ var recommended = tseslint.config(progress.configs['recommended-ci'], require('e
|
|
|
549
549
|
allowTypedFunctionExpressions: true
|
|
550
550
|
}],
|
|
551
551
|
'@typescript-eslint/explicit-member-accessibility': ['error', {
|
|
552
|
-
accessibility: 'explicit',
|
|
553
552
|
overrides: {
|
|
554
553
|
accessors: 'explicit',
|
|
555
554
|
constructors: 'no-public',
|
|
556
555
|
methods: 'explicit',
|
|
557
556
|
parameterProperties: 'explicit',
|
|
558
557
|
properties: 'explicit'
|
|
559
|
-
}
|
|
558
|
+
},
|
|
559
|
+
accessibility: 'explicit'
|
|
560
560
|
}],
|
|
561
561
|
'@typescript-eslint/max-params': ['error', {
|
|
562
562
|
countVoidThis: true,
|
|
@@ -810,6 +810,10 @@ var recommended = tseslint.config(progress.configs['recommended-ci'], require('e
|
|
|
810
810
|
group: ['@taiga-ui/polymorpheus'],
|
|
811
811
|
importNames: ['POLYMORPHEUS_CONTEXT'],
|
|
812
812
|
message: 'Please use `injectContext()` function instead'
|
|
813
|
+
}, {
|
|
814
|
+
group: ['@angular/core'],
|
|
815
|
+
importNames: ['Attribute'],
|
|
816
|
+
message: 'Always prefer using HostAttributeToken over @Attribute. See: https://angular.dev/api/core/HostAttributeToken'
|
|
813
817
|
}]
|
|
814
818
|
}],
|
|
815
819
|
'no-restricted-syntax': ['error', {
|
|
@@ -958,6 +962,9 @@ var recommended = tseslint.config(progress.configs['recommended-ci'], require('e
|
|
|
958
962
|
'@angular-eslint/template/elements-content': ['error', {
|
|
959
963
|
allowList: ['aria-label', 'innerHtml', 'textContent', 'innerHTML', 'innerText', 'outerHTML', 'title', 'tuiFile', 'tuiTag', 'tuiHint']
|
|
960
964
|
}],
|
|
965
|
+
'@angular-eslint/template/eqeqeq': ['error', {
|
|
966
|
+
allowNullOrUndefined: true
|
|
967
|
+
}],
|
|
961
968
|
'@angular-eslint/template/interactive-supports-focus': 'off',
|
|
962
969
|
'@angular-eslint/template/label-has-associated-control': 'off',
|
|
963
970
|
'@angular-eslint/template/no-distracting-elements': '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.275.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.ts",
|
|
@@ -9,16 +9,16 @@
|
|
|
9
9
|
"@smarttools/eslint-plugin-rxjs": ">=1.0.19",
|
|
10
10
|
"@stylistic/eslint-plugin": ">=4.2.0",
|
|
11
11
|
"@stylistic/eslint-plugin-ts": ">=4.2.0",
|
|
12
|
-
"@typescript-eslint/eslint-plugin": ">=8.
|
|
12
|
+
"@typescript-eslint/eslint-plugin": ">=8.31.0",
|
|
13
13
|
"angular-eslint": ">=19.3.0",
|
|
14
|
-
"eslint": ">=9.25.
|
|
14
|
+
"eslint": ">=9.25.1",
|
|
15
15
|
"eslint-config-prettier": ">=10.1.2",
|
|
16
16
|
"eslint-plugin-de-morgan": ">=1.2.1",
|
|
17
17
|
"eslint-plugin-decorator-position": ">=6.0.0",
|
|
18
18
|
"eslint-plugin-file-progress": ">=3.0.2",
|
|
19
19
|
"eslint-plugin-import": ">=2.31.0",
|
|
20
20
|
"eslint-plugin-jest": ">=28.11.0",
|
|
21
|
-
"eslint-plugin-perfectionist": ">=4.
|
|
21
|
+
"eslint-plugin-perfectionist": ">=4.12.0",
|
|
22
22
|
"eslint-plugin-playwright": ">=2.2.0",
|
|
23
23
|
"eslint-plugin-prettier": ">=5.2.6",
|
|
24
24
|
"eslint-plugin-promise": ">=7.2.1",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"eslint-plugin-unicorn": ">=58.0.0",
|
|
28
28
|
"eslint-plugin-unused-imports": ">=4.1.4",
|
|
29
29
|
"globals": ">=16.0.0",
|
|
30
|
-
"typescript-eslint": ">=8.
|
|
30
|
+
"typescript-eslint": ">=8.31.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|