@itcase/lint 1.0.43 → 1.0.45
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.
|
@@ -8,6 +8,8 @@ const customGroups = {
|
|
|
8
8
|
fill: '^fill.*',
|
|
9
9
|
border: '^border.*',
|
|
10
10
|
shadow: '^shadow.*',
|
|
11
|
+
template: '^template.*',
|
|
12
|
+
path: '^path.*',
|
|
11
13
|
font: '^font.*',
|
|
12
14
|
text: '^text.*',
|
|
13
15
|
flex: '^flex.*',
|
|
@@ -23,7 +25,7 @@ const customGroups = {
|
|
|
23
25
|
open: '^open.*',
|
|
24
26
|
is: '^is.*',
|
|
25
27
|
set: '^set.*',
|
|
26
|
-
on: '^on.*'
|
|
28
|
+
on: '^on.*',
|
|
27
29
|
}
|
|
28
30
|
|
|
29
31
|
export { customGroups }
|
|
@@ -2,8 +2,9 @@ const props = [
|
|
|
2
2
|
'id',
|
|
3
3
|
'className',
|
|
4
4
|
'key',
|
|
5
|
-
'name',
|
|
6
5
|
'type',
|
|
6
|
+
'name',
|
|
7
|
+
'message',
|
|
7
8
|
|
|
8
9
|
'appearance',
|
|
9
10
|
|
|
@@ -36,6 +37,10 @@ const props = [
|
|
|
36
37
|
'children',
|
|
37
38
|
'config',
|
|
38
39
|
|
|
40
|
+
'path',
|
|
41
|
+
'destination',
|
|
42
|
+
'template',
|
|
43
|
+
|
|
39
44
|
'url',
|
|
40
45
|
'method',
|
|
41
46
|
'data',
|
|
@@ -129,6 +134,8 @@ const props = [
|
|
|
129
134
|
'label',
|
|
130
135
|
'desc',
|
|
131
136
|
'description',
|
|
137
|
+
'prompts',
|
|
138
|
+
'actions',
|
|
132
139
|
|
|
133
140
|
// Other
|
|
134
141
|
// Прочее
|
package/package.json
CHANGED