@itcase/lint 1.1.75 → 1.1.79
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.
- package/CHANGELOG.md +317 -0
- package/dist/eslint/customPlugins/dataTestIdPlugin/constants.d.ts +33 -0
- package/dist/eslint/customPlugins/dataTestIdPlugin/example.d.ts +1 -0
- package/dist/eslint/customPlugins/dataTestIdPlugin/extra.d.ts +12 -0
- package/dist/eslint/customPlugins/dataTestIdPlugin/plugin.d.ts +40 -0
- package/dist/eslint/customPlugins/dataTestIdPlugin/rule.d.ts +5 -0
- package/dist/eslint/customPlugins/dataTestIdPlugin/rule.test.d.ts +1 -0
- package/dist/eslint/customPlugins/dataTestIdPlugin/ruleVisitors.d.ts +3 -0
- package/dist/eslint/customPlugins/dataTestIdPlugin/utils.d.ts +18 -0
- package/dist/eslint/index.d.ts +2 -0
- package/dist/eslint/mobx/index.d.ts +16 -0
- package/dist/eslint/mobx.js +20 -0
- package/dist/eslint/perfectionist/index.d.ts +11 -0
- package/dist/eslint/perfectionist/sort/customGroup.d.ts +105 -0
- package/dist/eslint/perfectionist/sort/props.d.ts +2 -0
- package/dist/eslint/perfectionist/sortClasses.d.ts +10 -0
- package/dist/eslint/perfectionist/sortEnums.d.ts +5 -0
- package/dist/eslint/perfectionist/sortExports.d.ts +15 -0
- package/dist/eslint/perfectionist/sortInterfaces.d.ts +10 -0
- package/dist/eslint/perfectionist/sortIntersectionTypes.d.ts +5 -0
- package/dist/eslint/perfectionist/sortJSXProps.d.ts +10 -0
- package/dist/eslint/perfectionist/sortMaps.d.ts +5 -0
- package/dist/eslint/perfectionist/sortNamedExports.d.ts +16 -0
- package/dist/eslint/perfectionist/sortObjectTypes.d.ts +10 -0
- package/dist/eslint/perfectionist/sortObjects.d.ts +23 -0
- package/dist/eslint/perfectionist/sortUnionTypes.d.ts +6 -0
- package/dist/eslint/perfectionist.js +30 -0
- package/dist/eslint/react-native.js +22 -0
- package/dist/eslint/storybook/index.d.ts +408 -0
- package/dist/eslint/storybook.js +10 -0
- package/dist/eslint/utils.d.ts +3 -0
- package/dist/eslint.js +347 -0
- package/dist/prettier/index.d.ts +15 -0
- package/dist/prettier/react-native/index.d.ts +9 -0
- package/dist/prettier/react-native.js +68 -0
- package/dist/prettier.js +34 -0
- package/dist/sortUnionTypes_rTLrktP3.js +619 -0
- package/dist/stylelint/index.d.ts +85 -0
- package/dist/stylelint.js +249 -0
- package/package.json +50 -22
- package/eslint/index.js +0 -108
- package/eslint/mobx/index.js +0 -18
- package/eslint/perfectionist/index.js +0 -11
- package/eslint/perfectionist/sort/customGroup.js +0 -118
- package/eslint/perfectionist/sort/props.js +0 -355
- package/eslint/perfectionist/sortClasses.js +0 -28
- package/eslint/perfectionist/sortEnums.js +0 -3
- package/eslint/perfectionist/sortExports.js +0 -17
- package/eslint/perfectionist/sortInterfaces.js +0 -38
- package/eslint/perfectionist/sortIntersectionTypes.js +0 -3
- package/eslint/perfectionist/sortJSXProps.js +0 -30
- package/eslint/perfectionist/sortMaps.js +0 -3
- package/eslint/perfectionist/sortNamedExports.js +0 -18
- package/eslint/perfectionist/sortObjectTypes.js +0 -32
- package/eslint/perfectionist/sortObjects.js +0 -44
- package/eslint/perfectionist/sortUnionTypes.js +0 -22
- package/eslint/react-native/index.js +0 -20
- package/eslint/storybook/index.js +0 -8
- package/eslint/utils.js +0 -25
- package/prettier/index.js +0 -32
- package/prettier/react-native/index.js +0 -66
- package/stylelint/index.js +0 -248
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,317 @@
|
|
|
1
|
+
## <small>1.1.79 (2026-01-19)</small>
|
|
2
|
+
|
|
3
|
+
* Merge branch 'develop' of https://github.com/itcase/itcase-lint into lesnoypudge/200 ([ea028b3](https://github.com/ITCase/itcase-lint/commit/ea028b3))
|
|
4
|
+
* Merge branch 'develop' of https://github.com/itcase/itcase-lint into lesnoypudge/200 ([aa667a5](https://github.com/ITCase/itcase-lint/commit/aa667a5))
|
|
5
|
+
* Merge branch 'develop' of https://github.com/itcase/itcase-lint into lesnoypudge/200 ([12e9de6](https://github.com/ITCase/itcase-lint/commit/12e9de6))
|
|
6
|
+
* Merge branch 'master' into develop ([3ba4a21](https://github.com/ITCase/itcase-lint/commit/3ba4a21))
|
|
7
|
+
* Merge branch 'master' of github.com:ITCase/itcase-lint ([3ba6106](https://github.com/ITCase/itcase-lint/commit/3ba6106))
|
|
8
|
+
* Merge pull request #6 from itcase/lesnoypudge/200 ([8e5c470](https://github.com/ITCase/itcase-lint/commit/8e5c470)), closes [#6](https://github.com/ITCase/itcase-lint/issues/6) [#200](https://github.com/ITCase/itcase-lint/issues/200)
|
|
9
|
+
* Update ESLint config to include additional file patterns ([b10408b](https://github.com/ITCase/itcase-lint/commit/b10408b))
|
|
10
|
+
* refactor(other): Update file names / add eslint rulee ([f6985ea](https://github.com/ITCase/itcase-lint/commit/f6985ea))
|
|
11
|
+
* fix(eslint): add configs to rule exception, fix build script for windows ([e3c235e](https://github.com/ITCase/itcase-lint/commit/e3c235e))
|
|
12
|
+
* fix(other): Fix precommit message ([ff74d75](https://github.com/ITCase/itcase-lint/commit/ff74d75))
|
|
13
|
+
* fix(other): Fix version ([64f30f2](https://github.com/ITCase/itcase-lint/commit/64f30f2))
|
|
14
|
+
* fix(other): Fix windows ([749a704](https://github.com/ITCase/itcase-lint/commit/749a704))
|
|
15
|
+
* fix(other): test2 ([b631325](https://github.com/ITCase/itcase-lint/commit/b631325))
|
|
16
|
+
* fix(other): test3 ([759729e](https://github.com/ITCase/itcase-lint/commit/759729e))
|
|
17
|
+
* fix(other): test4_2 ([3a202a5](https://github.com/ITCase/itcase-lint/commit/3a202a5))
|
|
18
|
+
* fix(other): test5 ([89df4f5](https://github.com/ITCase/itcase-lint/commit/89df4f5))
|
|
19
|
+
* fix(other): test6 ([59f8353](https://github.com/ITCase/itcase-lint/commit/59f8353))
|
|
20
|
+
* fix(other): test ([2fd1386](https://github.com/ITCase/itcase-lint/commit/2fd1386))
|
|
21
|
+
* fix(other): test ([ec6aafd](https://github.com/ITCase/itcase-lint/commit/ec6aafd))
|
|
22
|
+
* fix(other): test ([a1404d8](https://github.com/ITCase/itcase-lint/commit/a1404d8))
|
|
23
|
+
* fix(other): tmp ([43c9c07](https://github.com/ITCase/itcase-lint/commit/43c9c07))
|
|
24
|
+
* fix(other): Update hooks ([d240fad](https://github.com/ITCase/itcase-lint/commit/d240fad))
|
|
25
|
+
* other(other): Try windows ([c70d8d1](https://github.com/ITCase/itcase-lint/commit/c70d8d1))
|
|
26
|
+
* feat(other): added del-cli for cross-platform deletion ([2a77ed9](https://github.com/ITCase/itcase-lint/commit/2a77ed9))
|
|
27
|
+
|
|
28
|
+
## <small>1.1.78 (2026-01-12)</small>
|
|
29
|
+
|
|
30
|
+
* Merge branch 'master' into develop ([da8f161](https://github.com/ITCase/itcase-lint/commit/da8f161))
|
|
31
|
+
* Merge branch 'master' of github.com:ITCase/itcase-lint ([44e03b9](https://github.com/ITCase/itcase-lint/commit/44e03b9))
|
|
32
|
+
* patch(fix(other): Fix version) ([09a2f4f](https://github.com/ITCase/itcase-lint/commit/09a2f4f))
|
|
33
|
+
* patch(other(other): Test) ([c53ccf9](https://github.com/ITCase/itcase-lint/commit/c53ccf9))
|
|
34
|
+
* other(other): Test ([2ac9280](https://github.com/ITCase/itcase-lint/commit/2ac9280))
|
|
35
|
+
|
|
36
|
+
## <small>1.1.77 (2026-01-12)</small>
|
|
37
|
+
|
|
38
|
+
* Merge branch 'master' of github.com:ITCase/itcase-lint ([375a884](https://github.com/ITCase/itcase-lint/commit/375a884))
|
|
39
|
+
* ci(other): Add ts config ([18fcd73](https://github.com/ITCase/itcase-lint/commit/18fcd73))
|
|
40
|
+
|
|
41
|
+
## <small>1.1.76 (2026-01-12)</small>
|
|
42
|
+
|
|
43
|
+
* add comment ([9342f2d](https://github.com/ITCase/itcase-lint/commit/9342f2d))
|
|
44
|
+
* add comments ([585687d](https://github.com/ITCase/itcase-lint/commit/585687d))
|
|
45
|
+
* add comments to constants ([eeb57f9](https://github.com/ITCase/itcase-lint/commit/eeb57f9))
|
|
46
|
+
* add dataTestIdPlugin, add tsconfig, use created config ([beea866](https://github.com/ITCase/itcase-lint/commit/beea866))
|
|
47
|
+
* add eslint customPlugins dist to .gitignore ([74b2ab4](https://github.com/ITCase/itcase-lint/commit/74b2ab4))
|
|
48
|
+
* add eslint/customPlugins/dist to ignores in eslint.config.mjs ([876946c](https://github.com/ITCase/itcase-lint/commit/876946c))
|
|
49
|
+
* add note ([1169b63](https://github.com/ITCase/itcase-lint/commit/1169b63))
|
|
50
|
+
* clean ([85cf894](https://github.com/ITCase/itcase-lint/commit/85cf894))
|
|
51
|
+
* enable plugin in config for current project ([0300a5b](https://github.com/ITCase/itcase-lint/commit/0300a5b))
|
|
52
|
+
* fix IS ([c20f72e](https://github.com/ITCase/itcase-lint/commit/c20f72e))
|
|
53
|
+
* Merge branch 'develop' of github.com:ITCase/itcase-lint into develop ([c4e85c0](https://github.com/ITCase/itcase-lint/commit/c4e85c0))
|
|
54
|
+
* Merge branch 'develop' of github.com:ITCase/itcase-lint into develop ([77c4d34](https://github.com/ITCase/itcase-lint/commit/77c4d34))
|
|
55
|
+
* Merge branch 'master' into develop ([f11c399](https://github.com/ITCase/itcase-lint/commit/f11c399))
|
|
56
|
+
* Merge branch 'master' into develop ([e53e658](https://github.com/ITCase/itcase-lint/commit/e53e658))
|
|
57
|
+
* Merge branch 'master' of github.com:ITCase/itcase-lint ([88a0ae9](https://github.com/ITCase/itcase-lint/commit/88a0ae9))
|
|
58
|
+
* Merge pull request #4 from itcase/lesnoypudge/151 ([f6b3723](https://github.com/ITCase/itcase-lint/commit/f6b3723)), closes [#4](https://github.com/ITCase/itcase-lint/issues/4)
|
|
59
|
+
* Merge pull request #5 from itcase/data-test-id-plugin ([2a0772c](https://github.com/ITCase/itcase-lint/commit/2a0772c)), closes [#5](https://github.com/ITCase/itcase-lint/issues/5)
|
|
60
|
+
* refactor ([b385e2c](https://github.com/ITCase/itcase-lint/commit/b385e2c))
|
|
61
|
+
* refactor ([d874966](https://github.com/ITCase/itcase-lint/commit/d874966))
|
|
62
|
+
* refactor ([0210b10](https://github.com/ITCase/itcase-lint/commit/0210b10))
|
|
63
|
+
* refactor ([a2924e2](https://github.com/ITCase/itcase-lint/commit/a2924e2))
|
|
64
|
+
* refactor ([585101b](https://github.com/ITCase/itcase-lint/commit/585101b))
|
|
65
|
+
* refactor ([0fe123d](https://github.com/ITCase/itcase-lint/commit/0fe123d))
|
|
66
|
+
* refactor config ([1041270](https://github.com/ITCase/itcase-lint/commit/1041270))
|
|
67
|
+
* refactor exports ([24603b3](https://github.com/ITCase/itcase-lint/commit/24603b3))
|
|
68
|
+
* refactor plugin.ts ([982b085](https://github.com/ITCase/itcase-lint/commit/982b085))
|
|
69
|
+
* refactor test ([8e639cc](https://github.com/ITCase/itcase-lint/commit/8e639cc))
|
|
70
|
+
* remove bundled files ([e01e41c](https://github.com/ITCase/itcase-lint/commit/e01e41c))
|
|
71
|
+
* remove useless vars ([c0612e1](https://github.com/ITCase/itcase-lint/commit/c0612e1))
|
|
72
|
+
* update configs ([221537d](https://github.com/ITCase/itcase-lint/commit/221537d))
|
|
73
|
+
* feat: add eslint-plugin-import and configure import/no-default-export rule ([70a7cef](https://github.com/ITCase/itcase-lint/commit/70a7cef))
|
|
74
|
+
* feat(other): Add rollup ([0af9cc1](https://github.com/ITCase/itcase-lint/commit/0af9cc1))
|
|
75
|
+
* feat(other): Comples update ([3bc5a74](https://github.com/ITCase/itcase-lint/commit/3bc5a74))
|
|
76
|
+
* feat: handle variable declaration differently from functions, handle props for custom and html eleme ([d518a29](https://github.com/ITCase/itcase-lint/commit/d518a29))
|
|
77
|
+
* feat: update data-test-id plugin to include ignored elements and adjust test cases ([728e109](https://github.com/ITCase/itcase-lint/commit/728e109))
|
|
78
|
+
* fix: correct plugin name in configuration and rule definitions ([f2c0019](https://github.com/ITCase/itcase-lint/commit/f2c0019))
|
|
79
|
+
* fix: disable default rule for data-test-id plugin ([36068b2](https://github.com/ITCase/itcase-lint/commit/36068b2))
|
|
80
|
+
* refactor: remove commented-out ESLint configurations ([87c9e8c](https://github.com/ITCase/itcase-lint/commit/87c9e8c))
|
|
81
|
+
* refactor: rename pluginWithoutConfigs to plugin ([55f29ec](https://github.com/ITCase/itcase-lint/commit/55f29ec))
|
|
82
|
+
|
|
83
|
+
## [1.1.75](https://github.com/ITCase/itcase-lint/compare/v1.1.74...v1.1.75) (2026-01-12)
|
|
84
|
+
|
|
85
|
+
## [1.1.74](https://github.com/ITCase/itcase-lint/compare/v1.1.73...v1.1.74) (2026-01-06)
|
|
86
|
+
|
|
87
|
+
## [1.1.73](https://github.com/ITCase/itcase-lint/compare/v1.1.72...v1.1.73) (2025-12-23)
|
|
88
|
+
|
|
89
|
+
## [1.1.72](https://github.com/ITCase/itcase-lint/compare/v1.1.71...v1.1.72) (2025-12-23)
|
|
90
|
+
|
|
91
|
+
## [1.1.71](https://github.com/ITCase/itcase-lint/compare/v1.1.70...v1.1.71) (2025-12-23)
|
|
92
|
+
|
|
93
|
+
## [1.1.70](https://github.com/ITCase/itcase-lint/compare/v1.1.69...v1.1.70) (2025-12-23)
|
|
94
|
+
|
|
95
|
+
## [1.1.69](https://github.com/ITCase/itcase-lint/compare/v1.1.68...v1.1.69) (2025-11-19)
|
|
96
|
+
|
|
97
|
+
## [1.1.68](https://github.com/ITCase/itcase-lint/compare/v1.1.67...v1.1.68) (2025-10-14)
|
|
98
|
+
|
|
99
|
+
## [1.1.67](https://github.com/ITCase/itcase-lint/compare/v1.1.66...v1.1.67) (2025-09-19)
|
|
100
|
+
|
|
101
|
+
## [1.1.66](https://github.com/ITCase/itcase-lint/compare/v1.1.65...v1.1.66) (2025-09-19)
|
|
102
|
+
|
|
103
|
+
## [1.1.65](https://github.com/ITCase/itcase-lint/compare/v1.1.64...v1.1.65) (2025-09-19)
|
|
104
|
+
|
|
105
|
+
## [1.1.64](https://github.com/ITCase/itcase-lint/compare/v1.1.63...v1.1.64) (2025-09-17)
|
|
106
|
+
|
|
107
|
+
## [1.1.63](https://github.com/ITCase/itcase-lint/compare/v1.1.62...v1.1.63) (2025-09-17)
|
|
108
|
+
|
|
109
|
+
## [1.1.62](https://github.com/ITCase/itcase-lint/compare/v1.1.61...v1.1.62) (2025-09-15)
|
|
110
|
+
|
|
111
|
+
## [1.1.61](https://github.com/ITCase/itcase-lint/compare/v1.1.60...v1.1.61) (2025-09-15)
|
|
112
|
+
|
|
113
|
+
## [1.1.60](https://github.com/ITCase/itcase-lint/compare/v1.1.59...v1.1.60) (2025-09-15)
|
|
114
|
+
|
|
115
|
+
## [1.1.59](https://github.com/ITCase/itcase-lint/compare/v1.1.58...v1.1.59) (2025-09-11)
|
|
116
|
+
|
|
117
|
+
## [1.1.58](https://github.com/ITCase/itcase-lint/compare/v1.1.57...v1.1.58) (2025-09-11)
|
|
118
|
+
|
|
119
|
+
## [1.1.57](https://github.com/ITCase/itcase-lint/compare/v1.1.56...v1.1.57) (2025-09-10)
|
|
120
|
+
|
|
121
|
+
## [1.1.56](https://github.com/ITCase/itcase-lint/compare/v1.1.55...v1.1.56) (2025-09-10)
|
|
122
|
+
|
|
123
|
+
## [1.1.55](https://github.com/ITCase/itcase-lint/compare/v1.1.54...v1.1.55) (2025-09-10)
|
|
124
|
+
|
|
125
|
+
## [1.1.54](https://github.com/ITCase/itcase-lint/compare/v1.1.53...v1.1.54) (2025-09-09)
|
|
126
|
+
|
|
127
|
+
## [1.1.53](https://github.com/ITCase/itcase-lint/compare/v1.1.52...v1.1.53) (2025-09-09)
|
|
128
|
+
|
|
129
|
+
## [1.1.52](https://github.com/ITCase/itcase-lint/compare/v1.1.51...v1.1.52) (2025-09-09)
|
|
130
|
+
|
|
131
|
+
## [1.1.51](https://github.com/ITCase/itcase-lint/compare/v1.1.50...v1.1.51) (2025-09-09)
|
|
132
|
+
|
|
133
|
+
## [1.1.50](https://github.com/ITCase/itcase-lint/compare/v1.1.49...v1.1.50) (2025-09-09)
|
|
134
|
+
|
|
135
|
+
## [1.1.49](https://github.com/ITCase/itcase-lint/compare/v1.1.48...v1.1.49) (2025-09-04)
|
|
136
|
+
|
|
137
|
+
## [1.1.48](https://github.com/ITCase/itcase-lint/compare/v1.1.47...v1.1.48) (2025-09-01)
|
|
138
|
+
|
|
139
|
+
## [1.1.47](https://github.com/ITCase/itcase-lint/compare/v1.1.46...v1.1.47) (2025-08-29)
|
|
140
|
+
|
|
141
|
+
## [1.1.46](https://github.com/ITCase/itcase-lint/compare/v1.1.45...v1.1.46) (2025-08-29)
|
|
142
|
+
|
|
143
|
+
## [1.1.45](https://github.com/ITCase/itcase-lint/compare/v1.1.44...v1.1.45) (2025-08-29)
|
|
144
|
+
|
|
145
|
+
## [1.1.44](https://github.com/ITCase/itcase-lint/compare/v1.1.43...v1.1.44) (2025-08-29)
|
|
146
|
+
|
|
147
|
+
## [1.1.43](https://github.com/ITCase/itcase-lint/compare/v1.1.42...v1.1.43) (2025-08-28)
|
|
148
|
+
|
|
149
|
+
## [1.1.42](https://github.com/ITCase/itcase-lint/compare/v1.1.41...v1.1.42) (2025-08-28)
|
|
150
|
+
|
|
151
|
+
## [1.1.41](https://github.com/ITCase/itcase-lint/compare/v1.1.40...v1.1.41) (2025-08-28)
|
|
152
|
+
|
|
153
|
+
## [1.1.40](https://github.com/ITCase/itcase-lint/compare/v1.1.39...v1.1.40) (2025-08-28)
|
|
154
|
+
|
|
155
|
+
## [1.1.39](https://github.com/ITCase/itcase-lint/compare/v1.1.38...v1.1.39) (2025-08-28)
|
|
156
|
+
|
|
157
|
+
## [1.1.38](https://github.com/ITCase/itcase-lint/compare/v1.1.37...v1.1.38) (2025-08-26)
|
|
158
|
+
|
|
159
|
+
## [1.1.37](https://github.com/ITCase/itcase-lint/compare/v1.1.36...v1.1.37) (2025-08-15)
|
|
160
|
+
|
|
161
|
+
## [1.1.36](https://github.com/ITCase/itcase-lint/compare/v1.1.35...v1.1.36) (2025-08-14)
|
|
162
|
+
|
|
163
|
+
## [1.1.35](https://github.com/ITCase/itcase-lint/compare/v1.1.34...v1.1.35) (2025-08-14)
|
|
164
|
+
|
|
165
|
+
## [1.1.34](https://github.com/ITCase/itcase-lint/compare/v1.1.33...v1.1.34) (2025-08-14)
|
|
166
|
+
|
|
167
|
+
## [1.1.33](https://github.com/ITCase/itcase-lint/compare/v1.1.32...v1.1.33) (2025-08-14)
|
|
168
|
+
|
|
169
|
+
## [1.1.32](https://github.com/ITCase/itcase-lint/compare/v1.1.31...v1.1.32) (2025-08-13)
|
|
170
|
+
|
|
171
|
+
## [1.1.31](https://github.com/ITCase/itcase-lint/compare/v1.1.30...v1.1.31) (2025-08-13)
|
|
172
|
+
|
|
173
|
+
## [1.1.30](https://github.com/ITCase/itcase-lint/compare/v1.1.29...v1.1.30) (2025-08-04)
|
|
174
|
+
|
|
175
|
+
## [1.1.29](https://github.com/ITCase/itcase-lint/compare/v1.1.28...v1.1.29) (2025-07-25)
|
|
176
|
+
|
|
177
|
+
## [1.1.28](https://github.com/ITCase/itcase-lint/compare/v1.1.27...v1.1.28) (2025-07-25)
|
|
178
|
+
|
|
179
|
+
## [1.1.27](https://github.com/ITCase/itcase-lint/compare/v1.1.26...v1.1.27) (2025-07-23)
|
|
180
|
+
|
|
181
|
+
## [1.1.26](https://github.com/ITCase/itcase-lint/compare/v1.1.25...v1.1.26) (2025-07-22)
|
|
182
|
+
|
|
183
|
+
## [1.1.25](https://github.com/ITCase/itcase-lint/compare/v1.1.24...v1.1.25) (2025-07-21)
|
|
184
|
+
|
|
185
|
+
## [1.1.24](https://github.com/ITCase/itcase-lint/compare/v1.1.23...v1.1.24) (2025-07-18)
|
|
186
|
+
|
|
187
|
+
## [1.1.23](https://github.com/ITCase/itcase-lint/compare/v1.1.22...v1.1.23) (2025-07-15)
|
|
188
|
+
|
|
189
|
+
## [1.1.22](https://github.com/ITCase/itcase-lint/compare/v1.1.21...v1.1.22) (2025-07-15)
|
|
190
|
+
|
|
191
|
+
## [1.1.21](https://github.com/ITCase/itcase-lint/compare/v1.1.20...v1.1.21) (2025-07-09)
|
|
192
|
+
|
|
193
|
+
## [1.1.20](https://github.com/ITCase/itcase-lint/compare/v1.1.19...v1.1.20) (2025-07-09)
|
|
194
|
+
|
|
195
|
+
## [1.1.19](https://github.com/ITCase/itcase-lint/compare/v1.1.18...v1.1.19) (2025-06-20)
|
|
196
|
+
|
|
197
|
+
## [1.1.18](https://github.com/ITCase/itcase-lint/compare/v1.1.17...v1.1.18) (2025-06-19)
|
|
198
|
+
|
|
199
|
+
## [1.1.17](https://github.com/ITCase/itcase-lint/compare/v1.1.16...v1.1.17) (2025-06-16)
|
|
200
|
+
|
|
201
|
+
## [1.1.16](https://github.com/ITCase/itcase-lint/compare/v1.1.15...v1.1.16) (2025-06-13)
|
|
202
|
+
|
|
203
|
+
## [1.1.15](https://github.com/ITCase/itcase-lint/compare/v1.1.14...v1.1.15) (2025-06-12)
|
|
204
|
+
|
|
205
|
+
## [1.1.14](https://github.com/ITCase/itcase-lint/compare/v1.1.13...v1.1.14) (2025-06-12)
|
|
206
|
+
|
|
207
|
+
## [1.1.13](https://github.com/ITCase/itcase-lint/compare/v1.1.12...v1.1.13) (2025-06-12)
|
|
208
|
+
|
|
209
|
+
## [1.1.12](https://github.com/ITCase/itcase-lint/compare/v1.1.11...v1.1.12) (2025-06-12)
|
|
210
|
+
|
|
211
|
+
## [1.1.11](https://github.com/ITCase/itcase-lint/compare/v1.1.10...v1.1.11) (2025-06-12)
|
|
212
|
+
|
|
213
|
+
## [1.1.10](https://github.com/ITCase/itcase-lint/compare/v1.1.9...v1.1.10) (2025-06-03)
|
|
214
|
+
|
|
215
|
+
## [1.1.9](https://github.com/ITCase/itcase-lint/compare/v1.1.8...v1.1.9) (2025-04-24)
|
|
216
|
+
|
|
217
|
+
## [1.1.8](https://github.com/ITCase/itcase-lint/compare/v1.1.7...v1.1.8) (2025-04-22)
|
|
218
|
+
|
|
219
|
+
## [1.1.7](https://github.com/ITCase/itcase-lint/compare/v1.1.6...v1.1.7) (2025-04-15)
|
|
220
|
+
|
|
221
|
+
## [1.1.6](https://github.com/ITCase/itcase-lint/compare/v1.1.5...v1.1.6) (2025-04-15)
|
|
222
|
+
|
|
223
|
+
## [1.1.5](https://github.com/ITCase/itcase-lint/compare/v1.1.4...v1.1.5) (2025-04-15)
|
|
224
|
+
|
|
225
|
+
## [1.1.4](https://github.com/ITCase/itcase-lint/compare/v1.1.3...v1.1.4) (2025-04-09)
|
|
226
|
+
|
|
227
|
+
## [1.1.3](https://github.com/ITCase/itcase-lint/compare/v1.1.2...v1.1.3) (2025-04-09)
|
|
228
|
+
|
|
229
|
+
## [1.1.2](https://github.com/ITCase/itcase-lint/compare/v1.1.1...v1.1.2) (2025-04-03)
|
|
230
|
+
|
|
231
|
+
## [1.1.1](https://github.com/ITCase/itcase-lint/compare/v1.1.0...v1.1.1) (2025-04-02)
|
|
232
|
+
|
|
233
|
+
## [1.1.0](https://github.com/ITCase/itcase-lint/compare/v1.0.41...v1.1.0) (2025-04-02)
|
|
234
|
+
|
|
235
|
+
## [1.0.41](https://github.com/ITCase/itcase-lint/compare/v1.0.40...v1.0.41) (2025-02-13)
|
|
236
|
+
|
|
237
|
+
## [1.0.40](https://github.com/ITCase/itcase-lint/compare/v1.0.39...v1.0.40) (2025-02-06)
|
|
238
|
+
|
|
239
|
+
## [1.0.39](https://github.com/ITCase/itcase-lint/compare/v1.0.38...v1.0.39) (2025-02-06)
|
|
240
|
+
|
|
241
|
+
## [1.0.38](https://github.com/ITCase/itcase-lint/compare/v1.0.37...v1.0.38) (2025-01-31)
|
|
242
|
+
|
|
243
|
+
## [1.0.37](https://github.com/ITCase/itcase-lint/compare/v1.0.36...v1.0.37) (2025-01-31)
|
|
244
|
+
|
|
245
|
+
## [1.0.36](https://github.com/ITCase/itcase-lint/compare/v1.0.35...v1.0.36) (2025-01-10)
|
|
246
|
+
|
|
247
|
+
## [1.0.35](https://github.com/ITCase/itcase-lint/compare/v1.0.34...v1.0.35) (2024-12-17)
|
|
248
|
+
|
|
249
|
+
## [1.0.34](https://github.com/ITCase/itcase-lint/compare/v1.0.33...v1.0.34) (2024-12-12)
|
|
250
|
+
|
|
251
|
+
## [1.0.33](https://github.com/ITCase/itcase-lint/compare/v1.0.32...v1.0.33) (2024-12-02)
|
|
252
|
+
|
|
253
|
+
## [1.0.32](https://github.com/ITCase/itcase-lint/compare/v1.0.31...v1.0.32) (2024-12-02)
|
|
254
|
+
|
|
255
|
+
## [1.0.31](https://github.com/ITCase/itcase-lint/compare/v1.0.30...v1.0.31) (2024-11-28)
|
|
256
|
+
|
|
257
|
+
## [1.0.30](https://github.com/ITCase/itcase-lint/compare/v1.0.29...v1.0.30) (2024-11-27)
|
|
258
|
+
|
|
259
|
+
## [1.0.29](https://github.com/ITCase/itcase-lint/compare/v1.0.28...v1.0.29) (2024-11-27)
|
|
260
|
+
|
|
261
|
+
## [1.0.28](https://github.com/ITCase/itcase-lint/compare/v1.0.27...v1.0.28) (2024-11-27)
|
|
262
|
+
|
|
263
|
+
## [1.0.27](https://github.com/ITCase/itcase-lint/compare/v1.0.26...v1.0.27) (2024-11-27)
|
|
264
|
+
|
|
265
|
+
## [1.0.26](https://github.com/ITCase/itcase-lint/compare/v1.0.25...v1.0.26) (2024-11-27)
|
|
266
|
+
|
|
267
|
+
## [1.0.25](https://github.com/ITCase/itcase-lint/compare/v1.0.24...v1.0.25) (2024-11-27)
|
|
268
|
+
|
|
269
|
+
## [1.0.24](https://github.com/ITCase/itcase-lint/compare/v1.0.23...v1.0.24) (2024-11-27)
|
|
270
|
+
|
|
271
|
+
## [1.0.23](https://github.com/ITCase/itcase-lint/compare/v1.0.22...v1.0.23) (2024-11-27)
|
|
272
|
+
|
|
273
|
+
## [1.0.22](https://github.com/ITCase/itcase-lint/compare/v1.0.21...v1.0.22) (2024-11-27)
|
|
274
|
+
|
|
275
|
+
## [1.0.21](https://github.com/ITCase/itcase-lint/compare/v1.0.20...v1.0.21) (2024-11-27)
|
|
276
|
+
|
|
277
|
+
## [1.0.20](https://github.com/ITCase/itcase-lint/compare/v1.0.19...v1.0.20) (2024-11-27)
|
|
278
|
+
|
|
279
|
+
## [1.0.19](https://github.com/ITCase/itcase-lint/compare/v1.0.18...v1.0.19) (2024-11-25)
|
|
280
|
+
|
|
281
|
+
## [1.0.18](https://github.com/ITCase/itcase-lint/compare/v1.0.17...v1.0.18) (2024-11-20)
|
|
282
|
+
|
|
283
|
+
## [1.0.17](https://github.com/ITCase/itcase-lint/compare/v1.0.16...v1.0.17) (2024-11-18)
|
|
284
|
+
|
|
285
|
+
## [1.0.16](https://github.com/ITCase/itcase-lint/compare/v1.0.15...v1.0.16) (2024-11-12)
|
|
286
|
+
|
|
287
|
+
## [1.0.15](https://github.com/ITCase/itcase-lint/compare/v1.0.14...v1.0.15) (2024-11-12)
|
|
288
|
+
|
|
289
|
+
## [1.0.14](https://github.com/ITCase/itcase-lint/compare/v1.0.13...v1.0.14) (2024-10-20)
|
|
290
|
+
|
|
291
|
+
## [1.0.13](https://github.com/ITCase/itcase-lint/compare/v1.0.12...v1.0.13) (2024-09-10)
|
|
292
|
+
|
|
293
|
+
## [1.0.12](https://github.com/ITCase/itcase-lint/compare/v1.0.11...v1.0.12) (2024-09-10)
|
|
294
|
+
|
|
295
|
+
## [1.0.11](https://github.com/ITCase/itcase-lint/compare/v1.0.10...v1.0.11) (2024-09-10)
|
|
296
|
+
|
|
297
|
+
## [1.0.10](https://github.com/ITCase/itcase-lint/compare/v1.0.9...v1.0.10) (2024-08-09)
|
|
298
|
+
|
|
299
|
+
## [1.0.9](https://github.com/ITCase/itcase-lint/compare/v1.0.8...v1.0.9) (2024-08-07)
|
|
300
|
+
|
|
301
|
+
## [1.0.8](https://github.com/ITCase/itcase-lint/compare/v1.0.7...v1.0.8) (2024-08-06)
|
|
302
|
+
|
|
303
|
+
## [1.0.7](https://github.com/ITCase/itcase-lint/compare/v1.0.6...v1.0.7) (2024-08-06)
|
|
304
|
+
|
|
305
|
+
## [1.0.6](https://github.com/ITCase/itcase-lint/compare/v1.0.5...v1.0.6) (2024-08-06)
|
|
306
|
+
|
|
307
|
+
## [1.0.5](https://github.com/ITCase/itcase-lint/compare/v1.0.4...v1.0.5) (2024-08-05)
|
|
308
|
+
|
|
309
|
+
## [1.0.4](https://github.com/ITCase/itcase-lint/compare/v1.0.3...v1.0.4) (2024-08-05)
|
|
310
|
+
|
|
311
|
+
## [1.0.3](https://github.com/ITCase/itcase-lint/compare/v1.0.2...v1.0.3) (2024-08-05)
|
|
312
|
+
|
|
313
|
+
## [1.0.2](https://github.com/ITCase/itcase-lint/compare/v1.0.1...v1.0.2) (2024-07-26)
|
|
314
|
+
|
|
315
|
+
## [1.0.1](https://github.com/ITCase/itcase-lint/compare/v1.0.0...v1.0.1) (2024-07-26)
|
|
316
|
+
|
|
317
|
+
## 1.0.0 (2024-07-26)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
declare const MESSAGE_IDS: {
|
|
2
|
+
readonly missingAttribute: "missingAttribute";
|
|
3
|
+
readonly missingAttributeValue: "missingAttributeValue";
|
|
4
|
+
};
|
|
5
|
+
type MessageIds = typeof MESSAGE_IDS;
|
|
6
|
+
declare const MESSAGES: {
|
|
7
|
+
missingAttribute: string;
|
|
8
|
+
missingAttributeValue: string;
|
|
9
|
+
};
|
|
10
|
+
declare const ASSERT_DEFAULT_MESSAGE = "Assert violation";
|
|
11
|
+
/**
|
|
12
|
+
* Property name to check for in JSX elements.
|
|
13
|
+
*/
|
|
14
|
+
declare const PROP_TO_CHECK_BY_COMPONENT_TYPE: {
|
|
15
|
+
readonly CUSTOM: {
|
|
16
|
+
readonly name: string;
|
|
17
|
+
readonly kind: "custom";
|
|
18
|
+
};
|
|
19
|
+
readonly HTML: {
|
|
20
|
+
readonly name: string;
|
|
21
|
+
readonly kind: "html";
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Custom element names to which the rule should apply.
|
|
26
|
+
* If the array is empty, the rule applies to all JSX elements.
|
|
27
|
+
*/
|
|
28
|
+
declare const ELEMENT_NAMES_TO_CHECK: string[];
|
|
29
|
+
/**
|
|
30
|
+
* Custom element names to ignore by the rule.
|
|
31
|
+
*/
|
|
32
|
+
declare const ELEMENT_NAMES_TO_IGNORE: string[];
|
|
33
|
+
export { ASSERT_DEFAULT_MESSAGE, ELEMENT_NAMES_TO_CHECK, ELEMENT_NAMES_TO_IGNORE, MESSAGE_IDS, type MessageIds, MESSAGES, PROP_TO_CHECK_BY_COMPONENT_TYPE, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ESLintUtils, TSESLint } from '@typescript-eslint/utils';
|
|
2
|
+
import { type MessageIds } from './constants';
|
|
3
|
+
declare const createRule: <Options extends readonly unknown[], MessageIds extends string>({ meta, name, ...rule }: Readonly<ESLintUtils.RuleWithMetaAndName<Options, MessageIds, unknown>>) => ESLintUtils.RuleModule<MessageIds, Options, unknown, ESLintUtils.RuleListener> & {
|
|
4
|
+
name: string;
|
|
5
|
+
};
|
|
6
|
+
declare const ruleName = "data-test-id";
|
|
7
|
+
declare const pluginName = "eslint-data-test-id-plugin";
|
|
8
|
+
declare const defaultOptions: readonly [];
|
|
9
|
+
type Options = typeof defaultOptions;
|
|
10
|
+
type Context = Readonly<TSESLint.RuleContext<keyof MessageIds, Options>>;
|
|
11
|
+
type RuleVisitors = (context: Context, optionsWithDefault: Readonly<Options>) => TSESLint.RuleListener;
|
|
12
|
+
export { type Context, createRule, defaultOptions, pluginName, ruleName, type RuleVisitors, };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import parser from '@typescript-eslint/parser';
|
|
2
|
+
import { TSESLint } from '@typescript-eslint/utils';
|
|
3
|
+
declare const pluginWithoutConfigs: {
|
|
4
|
+
configs: {
|
|
5
|
+
recommended: {
|
|
6
|
+
languageOptions: {
|
|
7
|
+
ecmaVersion: "latest";
|
|
8
|
+
parser: typeof parser;
|
|
9
|
+
};
|
|
10
|
+
plugins: {
|
|
11
|
+
"eslint-data-test-id-plugin": {
|
|
12
|
+
meta: {
|
|
13
|
+
name: string;
|
|
14
|
+
version: string;
|
|
15
|
+
};
|
|
16
|
+
processors: {};
|
|
17
|
+
rules: {
|
|
18
|
+
"data-test-id": TSESLint.RuleModule<"missingAttribute" | "missingAttributeValue", [], unknown, TSESLint.RuleListener> & {
|
|
19
|
+
name: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
rules: {
|
|
25
|
+
"eslint-data-test-id-plugin/data-test-id": "off";
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
meta: {
|
|
30
|
+
name: string;
|
|
31
|
+
version: string;
|
|
32
|
+
};
|
|
33
|
+
processors: {};
|
|
34
|
+
rules: {
|
|
35
|
+
"data-test-id": TSESLint.RuleModule<"missingAttribute" | "missingAttributeValue", [], unknown, TSESLint.RuleListener> & {
|
|
36
|
+
name: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
export default pluginWithoutConfigs;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { TSESTree } from '@typescript-eslint/utils';
|
|
2
|
+
import { ASSERT_DEFAULT_MESSAGE } from './constants';
|
|
3
|
+
import { Context } from './extra';
|
|
4
|
+
/** Throw an error if the condition is falsy */
|
|
5
|
+
declare function assert(condition: unknown): asserts condition;
|
|
6
|
+
/** Extract name from a string or Identifier node */
|
|
7
|
+
declare function extractNameFromPossibleIdentifier(nodeOrName: string | {
|
|
8
|
+
name: string;
|
|
9
|
+
}): string;
|
|
10
|
+
/** Get name items of functions and variables that wraps the given node */
|
|
11
|
+
declare const getFunctionOrVariableAncestorNameItems: (context: Context, node: TSESTree.Node) => ({
|
|
12
|
+
readonly name: string;
|
|
13
|
+
readonly kind: "function";
|
|
14
|
+
} | {
|
|
15
|
+
readonly name: string;
|
|
16
|
+
readonly kind: "variable";
|
|
17
|
+
})[];
|
|
18
|
+
export { assert, ASSERT_DEFAULT_MESSAGE, extractNameFromPossibleIdentifier, getFunctionOrVariableAncestorNameItems, };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: ({
|
|
2
|
+
plugins: {
|
|
3
|
+
mobx: any;
|
|
4
|
+
};
|
|
5
|
+
rules?: undefined;
|
|
6
|
+
} | {
|
|
7
|
+
rules: {
|
|
8
|
+
'mobx/exhaustive-make-observable': string;
|
|
9
|
+
'mobx/missing-make-observable': string;
|
|
10
|
+
'mobx/missing-observer': string;
|
|
11
|
+
'mobx/no-anonymous-observer': string;
|
|
12
|
+
'mobx/unconditional-make-observable': string;
|
|
13
|
+
};
|
|
14
|
+
plugins?: undefined;
|
|
15
|
+
})[];
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import eslintMobx from 'eslint-plugin-mobx';
|
|
2
|
+
|
|
3
|
+
var index = [
|
|
4
|
+
{
|
|
5
|
+
plugins: {
|
|
6
|
+
mobx: eslintMobx,
|
|
7
|
+
},
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
rules: {
|
|
11
|
+
'mobx/exhaustive-make-observable': 'warn',
|
|
12
|
+
'mobx/missing-make-observable': 'error',
|
|
13
|
+
'mobx/missing-observer': 'off',
|
|
14
|
+
'mobx/no-anonymous-observer': 'warn',
|
|
15
|
+
'mobx/unconditional-make-observable': 'error',
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
];
|
|
19
|
+
|
|
20
|
+
export { index as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { sortClasses } from './sortClasses';
|
|
2
|
+
export { sortEnums } from './sortEnums';
|
|
3
|
+
export { sortExports } from './sortExports';
|
|
4
|
+
export { sortInterfaces } from './sortInterfaces';
|
|
5
|
+
export { sortIntersectionTypes } from './sortIntersectionTypes';
|
|
6
|
+
export { sortJSXProps } from './sortJSXProps';
|
|
7
|
+
export { sortMaps } from './sortMaps';
|
|
8
|
+
export { sortNamedExports } from './sortNamedExports';
|
|
9
|
+
export { sortObjects } from './sortObjects';
|
|
10
|
+
export { sortObjectTypes } from './sortObjectTypes';
|
|
11
|
+
export { sortUnionTypes } from './sortUnionTypes';
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
declare const customGroups: {
|
|
2
|
+
id: string;
|
|
3
|
+
direction: string;
|
|
4
|
+
flex: string;
|
|
5
|
+
justify: string;
|
|
6
|
+
align: string;
|
|
7
|
+
min: string;
|
|
8
|
+
max: string;
|
|
9
|
+
fill: string;
|
|
10
|
+
fillActive: string;
|
|
11
|
+
fillActiveHover: string;
|
|
12
|
+
fillDisabled: string;
|
|
13
|
+
fillHover: string;
|
|
14
|
+
initial: string;
|
|
15
|
+
isMobile: string;
|
|
16
|
+
isTablet: string;
|
|
17
|
+
isDesktop: string;
|
|
18
|
+
path: string;
|
|
19
|
+
template: string;
|
|
20
|
+
findIn: string;
|
|
21
|
+
findBy: string;
|
|
22
|
+
title: string;
|
|
23
|
+
subtitle: string;
|
|
24
|
+
label: string;
|
|
25
|
+
message: string;
|
|
26
|
+
desc: string;
|
|
27
|
+
description: string;
|
|
28
|
+
status: string;
|
|
29
|
+
border: string;
|
|
30
|
+
borderColor: string;
|
|
31
|
+
borderColorActive: string;
|
|
32
|
+
borderColorActiveHover: string;
|
|
33
|
+
borderColorDisabled: string;
|
|
34
|
+
borderColorHover: string;
|
|
35
|
+
shadow: string;
|
|
36
|
+
font: string;
|
|
37
|
+
text: string;
|
|
38
|
+
textColor: string;
|
|
39
|
+
textColorActive: string;
|
|
40
|
+
textColorActiveHover: string;
|
|
41
|
+
textColorDisabled: string;
|
|
42
|
+
textColorHover: string;
|
|
43
|
+
background: string;
|
|
44
|
+
ErrorNetworkMock: string;
|
|
45
|
+
ErrorRequestMock: string;
|
|
46
|
+
hasAccent: string;
|
|
47
|
+
hasAccentMuted: string;
|
|
48
|
+
hasDanger: string;
|
|
49
|
+
hasDangerMuted: string;
|
|
50
|
+
hasDefault: string;
|
|
51
|
+
hasDisabled: string;
|
|
52
|
+
hasDisabledMuted: string;
|
|
53
|
+
hasError: string;
|
|
54
|
+
hasErrorMuted: string;
|
|
55
|
+
hasFilled: string;
|
|
56
|
+
hasGet: string;
|
|
57
|
+
hasHigh: string;
|
|
58
|
+
hasHighest: string;
|
|
59
|
+
hasInfo: string;
|
|
60
|
+
hasInfoMuted: string;
|
|
61
|
+
hasInitialValues: string;
|
|
62
|
+
hasIs: string;
|
|
63
|
+
hasLoading: string;
|
|
64
|
+
hasLow: string;
|
|
65
|
+
hasLowest: string;
|
|
66
|
+
hasMedium: string;
|
|
67
|
+
hasMutedPrimaryAppearance: string;
|
|
68
|
+
hasMutedQuaternaryAppearance: string;
|
|
69
|
+
hasMutedSecondaryAppearance: string;
|
|
70
|
+
hasMutedTertiaryAppearance: string;
|
|
71
|
+
hasPrimary: string;
|
|
72
|
+
hasPrimaryAppearance: string;
|
|
73
|
+
hasPrimaryMuted: string;
|
|
74
|
+
hasQuaternary: string;
|
|
75
|
+
hasQuaternaryAppearance: string;
|
|
76
|
+
hasQuaternaryMuted: string;
|
|
77
|
+
hasRequire: string;
|
|
78
|
+
hasSecondary: string;
|
|
79
|
+
hasSecondaryAppearance: string;
|
|
80
|
+
hasSecondaryMuted: string;
|
|
81
|
+
hasServerError: string;
|
|
82
|
+
hasServerErrorData: string;
|
|
83
|
+
hasSet: string;
|
|
84
|
+
hasSuccess: string;
|
|
85
|
+
hasSuccessMuted: string;
|
|
86
|
+
hasSurface: string;
|
|
87
|
+
hasSurfaceMuted: string;
|
|
88
|
+
hasTertiary: string;
|
|
89
|
+
hasTertiaryAppearance: string;
|
|
90
|
+
hasTertiaryMuted: string;
|
|
91
|
+
hasValidation: string;
|
|
92
|
+
hasWarning: string;
|
|
93
|
+
hasWarningMuted: string;
|
|
94
|
+
open: string;
|
|
95
|
+
close: string;
|
|
96
|
+
onClick: string;
|
|
97
|
+
onError: string;
|
|
98
|
+
onSuccess: string;
|
|
99
|
+
on: string;
|
|
100
|
+
DefaultMock: string;
|
|
101
|
+
LoadingMock: string;
|
|
102
|
+
ErrorMock: string;
|
|
103
|
+
SuccessMock: string;
|
|
104
|
+
};
|
|
105
|
+
export { customGroups };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const sortExports: (string | {
|
|
2
|
+
type: string;
|
|
3
|
+
customGroups: never[];
|
|
4
|
+
fallbackSort: {
|
|
5
|
+
type: string;
|
|
6
|
+
};
|
|
7
|
+
groups: never[];
|
|
8
|
+
ignoreCase: boolean;
|
|
9
|
+
newlinesBetween: string;
|
|
10
|
+
order: string;
|
|
11
|
+
partitionByComment: boolean;
|
|
12
|
+
partitionByNewLine: boolean;
|
|
13
|
+
specialCharacters: string;
|
|
14
|
+
})[];
|
|
15
|
+
export { sortExports };
|