@itcase/lint 1.1.3 → 1.1.5
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/eslint/index.js
CHANGED
|
@@ -4,7 +4,6 @@ const props = [
|
|
|
4
4
|
'key',
|
|
5
5
|
'type',
|
|
6
6
|
'name',
|
|
7
|
-
'message',
|
|
8
7
|
|
|
9
8
|
'appearance',
|
|
10
9
|
|
|
@@ -53,7 +52,10 @@ const props = [
|
|
|
53
52
|
'isDesktop',
|
|
54
53
|
'config',
|
|
55
54
|
|
|
55
|
+
'dir',
|
|
56
|
+
'src',
|
|
56
57
|
'path',
|
|
58
|
+
'dest',
|
|
57
59
|
'destination',
|
|
58
60
|
'template',
|
|
59
61
|
|
|
@@ -62,6 +64,7 @@ const props = [
|
|
|
62
64
|
'headerTitle',
|
|
63
65
|
'subtitle',
|
|
64
66
|
'label',
|
|
67
|
+
'message',
|
|
65
68
|
'desc',
|
|
66
69
|
'description',
|
|
67
70
|
'prompts',
|
|
@@ -184,7 +187,6 @@ const props = [
|
|
|
184
187
|
'confirm',
|
|
185
188
|
|
|
186
189
|
// Other
|
|
187
|
-
// Прочее
|
|
188
190
|
'overflow',
|
|
189
191
|
'display',
|
|
190
192
|
'resizeMode',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itcase/lint",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"author": "ITCase",
|
|
5
5
|
"description": "Code style linter configuration presets",
|
|
6
6
|
"engines": {
|
|
@@ -33,8 +33,6 @@
|
|
|
33
33
|
"registry": "https://registry.npmjs.org/"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@typescript-eslint/eslint-plugin": "^8.29.1",
|
|
37
|
-
"@typescript-eslint/parser": "^8.29.1",
|
|
38
36
|
"@babel/eslint-parser": "^7.27.0",
|
|
39
37
|
"@babel/eslint-plugin": "^7.27.0",
|
|
40
38
|
"@eslint/compat": "^1.2.8",
|
|
@@ -42,8 +40,10 @@
|
|
|
42
40
|
"@eslint/markdown": "^6.3.0",
|
|
43
41
|
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
|
|
44
42
|
"@itcase/config": "^1.0.26",
|
|
43
|
+
"@typescript-eslint/eslint-plugin": "^8.30.1",
|
|
44
|
+
"@typescript-eslint/parser": "^8.30.1",
|
|
45
45
|
"eslint": "^9.24.0",
|
|
46
|
-
"eslint-config-prettier": "^10.1.
|
|
46
|
+
"eslint-config-prettier": "^10.1.2",
|
|
47
47
|
"eslint-plugin-html": "^8.1.2",
|
|
48
48
|
"eslint-plugin-json": "^4.0.1",
|
|
49
49
|
"eslint-plugin-mobx": "^0.0.13",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"stylelint-no-unsupported-browser-features": "^8.0.4",
|
|
65
65
|
"stylelint-order": "^6.0.4",
|
|
66
66
|
"stylelint-prettier": "^5.0.3",
|
|
67
|
-
"typescript-eslint": "^8.
|
|
67
|
+
"typescript-eslint": "^8.30.1"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@commitlint/cli": "^19.8.0",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@semantic-release/release-notes-generator": "14.0.3",
|
|
75
75
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
76
76
|
"husky": "^9.1.7",
|
|
77
|
-
"lint-staged": "^15.5.
|
|
77
|
+
"lint-staged": "^15.5.1",
|
|
78
78
|
"semantic-release": "^24.2.3",
|
|
79
79
|
"typescript": "^5.8.3"
|
|
80
80
|
}
|
package/stylelint/index.js
CHANGED
|
@@ -214,12 +214,15 @@ export default {
|
|
|
214
214
|
'/^padding-/': '/.+/',
|
|
215
215
|
'/^margin-/': '/.+/',
|
|
216
216
|
'/^border-/': '/.+/',
|
|
217
|
+
'/-gap$/': '/.+/',
|
|
218
|
+
padding: '/.+/',
|
|
219
|
+
margin: '/.+/',
|
|
220
|
+
border: '/.+/',
|
|
217
221
|
top: '/.+/',
|
|
218
222
|
left: '/.+/',
|
|
219
223
|
right: '/.+/',
|
|
220
224
|
bottom: '/.+/',
|
|
221
225
|
gap: '/.+/',
|
|
222
|
-
'/-gap$/': '/.+/',
|
|
223
226
|
},
|
|
224
227
|
},
|
|
225
228
|
],
|
|
@@ -227,13 +230,7 @@ export default {
|
|
|
227
230
|
'at-rule-no-unknown': [
|
|
228
231
|
true,
|
|
229
232
|
{
|
|
230
|
-
ignoreAtRules: [
|
|
231
|
-
'import-glob',
|
|
232
|
-
'for',
|
|
233
|
-
'each',
|
|
234
|
-
'mixin',
|
|
235
|
-
'define-mixin',
|
|
236
|
-
],
|
|
233
|
+
ignoreAtRules: ['import-glob', 'for', 'each', 'mixin', 'define-mixin'],
|
|
237
234
|
},
|
|
238
235
|
],
|
|
239
236
|
},
|