@itcase/lint 1.1.43 → 1.1.44
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,4 +1,5 @@
|
|
|
1
1
|
const customGroups = {
|
|
2
|
+
UPPERCASE: '\\b[A-Z]+(_[A-Z]+)*\\b',
|
|
2
3
|
id: '^id$',
|
|
3
4
|
title: '^title.*',
|
|
4
5
|
subtitle: '^subtitle.*',
|
|
@@ -72,6 +73,10 @@ const customGroups = {
|
|
|
72
73
|
isTablet: '^isTablet.*',
|
|
73
74
|
isDesktop: '^isDesktop.*',
|
|
74
75
|
|
|
76
|
+
primaryButton: '^primaryButton.*',
|
|
77
|
+
secondaryButton: '^secondaryButton.*',
|
|
78
|
+
tertiaryButton: '^tertiaryButton.*',
|
|
79
|
+
|
|
75
80
|
message: '^message.*',
|
|
76
81
|
close: '^close.*',
|
|
77
82
|
open: '^open.*',
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
const props = [
|
|
2
|
+
'UPPERCASE',
|
|
2
3
|
'id',
|
|
3
4
|
'dataTestId',
|
|
4
5
|
'dataTour',
|
|
@@ -94,8 +95,6 @@ const props = [
|
|
|
94
95
|
`empty`,
|
|
95
96
|
`validation`,
|
|
96
97
|
|
|
97
|
-
'initialValues',
|
|
98
|
-
|
|
99
98
|
'config',
|
|
100
99
|
'validationSchema',
|
|
101
100
|
|
|
@@ -180,6 +179,8 @@ const props = [
|
|
|
180
179
|
`serverError`,
|
|
181
180
|
`serverErrorData`,
|
|
182
181
|
|
|
182
|
+
'initialValues',
|
|
183
|
+
|
|
183
184
|
// State
|
|
184
185
|
'custom',
|
|
185
186
|
'fail',
|