@itcase/lint 1.1.24 → 1.1.26

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.
@@ -1,5 +1,7 @@
1
1
  const props = [
2
2
  'id',
3
+ 'dataTestId',
4
+ 'dataTour',
3
5
  'className',
4
6
  'key',
5
7
  'type',
@@ -171,6 +173,14 @@ const props = [
171
173
  'paddingBottomDesktop',
172
174
  'paddingLeftDesktop',
173
175
  'gap',
176
+ 'gapMobile',
177
+ 'gapTablet',
178
+ 'gapDesktop',
179
+
180
+ 'columns',
181
+ 'columnsMobile',
182
+ 'columnsTablet',
183
+ 'columnsDesktop',
174
184
 
175
185
  // Borders and shadows
176
186
  'border',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/lint",
3
- "version": "1.1.24",
3
+ "version": "1.1.26",
4
4
  "author": "ITCase",
5
5
  "description": "Code style linter configuration presets",
6
6
  "engines": {
@@ -40,17 +40,17 @@
40
40
  "@eslint/js": "^9.31.0",
41
41
  "@eslint/markdown": "^7.0.0",
42
42
  "@ianvs/prettier-plugin-sort-imports": "^4.5.1",
43
- "@typescript-eslint/eslint-plugin": "^8.37.0",
44
- "@typescript-eslint/parser": "^8.37.0",
43
+ "@typescript-eslint/eslint-plugin": "^8.38.0",
44
+ "@typescript-eslint/parser": "^8.38.0",
45
45
  "eslint": "^9.31.0",
46
- "eslint-config-prettier": "^10.1.5",
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.1",
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",
@@ -64,12 +64,12 @@
64
64
  "stylelint-no-unsupported-browser-features": "^8.0.4",
65
65
  "stylelint-order": "^7.0.0",
66
66
  "stylelint-prettier": "^5.0.3",
67
- "typescript-eslint": "^8.37.0"
67
+ "typescript-eslint": "^8.38.0"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@commitlint/cli": "^19.8.1",
71
71
  "@commitlint/config-conventional": "^19.8.1",
72
- "@itcase/config": "^1.0.53",
72
+ "@itcase/config": "^1.0.54",
73
73
  "@semantic-release/changelog": "^6.0.3",
74
74
  "@semantic-release/git": "^10.0.1",
75
75
  "@semantic-release/release-notes-generator": "14.0.3",
@@ -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: ['import-glob', 'for', 'each', 'mixin', 'define-mixin'],
237
+ ignoreAtRules: [
238
+ 'import-glob',
239
+ 'for',
240
+ 'each',
241
+ 'mixin',
242
+ 'extend',
243
+ 'define-mixin',
244
+ ],
234
245
  },
235
246
  ],
236
247
  },