@itcase/lint 1.1.3 → 1.1.4

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.
@@ -4,7 +4,6 @@ const props = [
4
4
  'key',
5
5
  'type',
6
6
  'name',
7
- 'message',
8
7
 
9
8
  'appearance',
10
9
 
@@ -62,6 +61,7 @@ const props = [
62
61
  'headerTitle',
63
62
  'subtitle',
64
63
  'label',
64
+ 'message',
65
65
  'desc',
66
66
  'description',
67
67
  'prompts',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/lint",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "author": "ITCase",
5
5
  "description": "Code style linter configuration presets",
6
6
  "engines": {
@@ -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
  },