@itcase/lint 1.1.24 → 1.1.25
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.
|
@@ -171,6 +171,14 @@ const props = [
|
|
|
171
171
|
'paddingBottomDesktop',
|
|
172
172
|
'paddingLeftDesktop',
|
|
173
173
|
'gap',
|
|
174
|
+
'gapMobile',
|
|
175
|
+
'gapTablet',
|
|
176
|
+
'gapDesktop',
|
|
177
|
+
|
|
178
|
+
'columns',
|
|
179
|
+
'columnsMobile',
|
|
180
|
+
'columnsTablet',
|
|
181
|
+
'columnsDesktop',
|
|
174
182
|
|
|
175
183
|
// Borders and shadows
|
|
176
184
|
'border',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itcase/lint",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.25",
|
|
4
4
|
"author": "ITCase",
|
|
5
5
|
"description": "Code style linter configuration presets",
|
|
6
6
|
"engines": {
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"@typescript-eslint/eslint-plugin": "^8.37.0",
|
|
44
44
|
"@typescript-eslint/parser": "^8.37.0",
|
|
45
45
|
"eslint": "^9.31.0",
|
|
46
|
-
"eslint-config-prettier": "^10.1.
|
|
46
|
+
"eslint-config-prettier": "^10.1.8",
|
|
47
47
|
"eslint-plugin-html": "^8.1.3",
|
|
48
48
|
"eslint-plugin-json": "^4.0.1",
|
|
49
49
|
"eslint-plugin-mobx": "^0.0.13",
|
|
50
50
|
"eslint-plugin-n": "^17.21.0",
|
|
51
51
|
"eslint-plugin-node": "^11.1.0",
|
|
52
52
|
"eslint-plugin-perfectionist": "^4.15.0",
|
|
53
|
-
"eslint-plugin-prettier": "^5.5.
|
|
53
|
+
"eslint-plugin-prettier": "^5.5.3",
|
|
54
54
|
"eslint-plugin-promise": "^7.2.1",
|
|
55
55
|
"eslint-plugin-react": "^7.37.5",
|
|
56
56
|
"eslint-plugin-react-hooks": "^5.2.0",
|
package/stylelint/index.js
CHANGED
|
@@ -80,6 +80,10 @@ export default {
|
|
|
80
80
|
'order/order': [
|
|
81
81
|
[
|
|
82
82
|
'declarations',
|
|
83
|
+
{
|
|
84
|
+
type: 'at-rule',
|
|
85
|
+
name: 'extend',
|
|
86
|
+
},
|
|
83
87
|
{
|
|
84
88
|
type: 'at-rule',
|
|
85
89
|
name: 'mixin',
|
|
@@ -230,7 +234,14 @@ export default {
|
|
|
230
234
|
'at-rule-no-unknown': [
|
|
231
235
|
true,
|
|
232
236
|
{
|
|
233
|
-
ignoreAtRules: [
|
|
237
|
+
ignoreAtRules: [
|
|
238
|
+
'import-glob',
|
|
239
|
+
'for',
|
|
240
|
+
'each',
|
|
241
|
+
'mixin',
|
|
242
|
+
'extend',
|
|
243
|
+
'define-mixin',
|
|
244
|
+
],
|
|
234
245
|
},
|
|
235
246
|
],
|
|
236
247
|
},
|