@taiga-ui/eslint-plugin-experience-next 0.483.0 → 0.484.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 +3 -4
- package/package.json +2 -4
package/index.esm.js
CHANGED
|
@@ -250369,8 +250369,7 @@ function collectParts(node) {
|
|
|
250369
250369
|
}
|
|
250370
250370
|
function isRootConcat(node) {
|
|
250371
250371
|
const { parent } = node;
|
|
250372
|
-
return
|
|
250373
|
-
parent.operator !== '+');
|
|
250372
|
+
return parent.type !== dist$3.AST_NODE_TYPES.BinaryExpression || parent.operator !== '+';
|
|
250374
250373
|
}
|
|
250375
250374
|
function isStringType(type, checker) {
|
|
250376
250375
|
if (type.isUnion()) {
|
|
@@ -252166,8 +252165,8 @@ const rule$9 = createRule({
|
|
|
252166
252165
|
meta: {
|
|
252167
252166
|
docs: { description: 'Require a non-empty title element inside head' },
|
|
252168
252167
|
messages: {
|
|
252169
|
-
[MESSAGE_IDS.EMPTY_TITLE]: 'Unexpected empty text in `<title
|
|
252170
|
-
[MESSAGE_IDS.MISSING_TITLE]: 'Missing `<title
|
|
252168
|
+
[MESSAGE_IDS.EMPTY_TITLE]: 'Unexpected empty text in `<title></title>`',
|
|
252169
|
+
[MESSAGE_IDS.MISSING_TITLE]: 'Missing `<title></title>` in the `<head></head>`',
|
|
252171
252170
|
},
|
|
252172
252171
|
schema: [],
|
|
252173
252172
|
type: 'problem',
|
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.484.0",
|
|
4
4
|
"description": "An ESLint plugin to enforce a consistent code styles across taiga-ui projects",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,7 +27,6 @@
|
|
|
27
27
|
],
|
|
28
28
|
"type": "module",
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@typescript-eslint/rule-tester": "8.58.1",
|
|
31
30
|
"glob": "13.0.6"
|
|
32
31
|
},
|
|
33
32
|
"peerDependencies": {
|
|
@@ -36,7 +35,6 @@
|
|
|
36
35
|
"@smarttools/eslint-plugin-rxjs": "^1.0.22",
|
|
37
36
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
38
37
|
"@types/glob": "*",
|
|
39
|
-
"@typescript-eslint/eslint-plugin": "^8.58.1",
|
|
40
38
|
"angular-eslint": "^20.7.0",
|
|
41
39
|
"eslint": "^9.39.2",
|
|
42
40
|
"eslint-config-prettier": "^10.1.7",
|
|
@@ -59,7 +57,7 @@
|
|
|
59
57
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
60
58
|
"glob": "*",
|
|
61
59
|
"globals": "^17.5.0",
|
|
62
|
-
"typescript-eslint": "^8.
|
|
60
|
+
"typescript-eslint": "^8.59.0"
|
|
63
61
|
},
|
|
64
62
|
"publishConfig": {
|
|
65
63
|
"access": "public"
|