@itcase/lint 1.1.23 → 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.
@@ -54,6 +54,16 @@ const props = [
54
54
  'textColorActive',
55
55
  'textColorDisabled',
56
56
 
57
+ 'circular',
58
+ 'rounded',
59
+ 'roundedXXS',
60
+ 'roundedXS',
61
+ 'roundedS',
62
+ 'roundedM',
63
+ 'roundedL',
64
+ 'roundedXL',
65
+ 'roundedXXL',
66
+
57
67
  'position',
58
68
  'top',
59
69
  'right',
@@ -161,6 +171,14 @@ const props = [
161
171
  'paddingBottomDesktop',
162
172
  'paddingLeftDesktop',
163
173
  'gap',
174
+ 'gapMobile',
175
+ 'gapTablet',
176
+ 'gapDesktop',
177
+
178
+ 'columns',
179
+ 'columnsMobile',
180
+ 'columnsTablet',
181
+ 'columnsDesktop',
164
182
 
165
183
  // Borders and shadows
166
184
  'border',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/lint",
3
- "version": "1.1.23",
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.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",
@@ -69,7 +69,7 @@
69
69
  "devDependencies": {
70
70
  "@commitlint/cli": "^19.8.1",
71
71
  "@commitlint/config-conventional": "^19.8.1",
72
- "@itcase/config": "^1.0.52",
72
+ "@itcase/config": "^1.0.53",
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
  },