@croct/eslint-plugin 0.6.6 → 0.7.1

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,124 +0,0 @@
1
- export declare const javascript: {
2
- extends: string[];
3
- plugins: string[];
4
- rules: {
5
- '@croct/argument-spacing': string;
6
- '@croct/complex-expression-spacing': string;
7
- '@croct/newline-per-chained-call': string;
8
- '@croct/min-chained-call-depth': string;
9
- '@croct/parameter-destructuring': string;
10
- 'eslint-comments/disable-enable-pair': (string | {
11
- allowWholeFile: boolean;
12
- })[];
13
- 'eslint-comments/require-description': string;
14
- 'eslint-comments/no-unused-disable': string;
15
- 'newline-per-chained-call': string;
16
- 'no-plusplus': string;
17
- 'array-bracket-newline': string[];
18
- 'multiline-ternary': string[];
19
- 'no-undef-init': string;
20
- 'jest/consistent-test-it': (string | {
21
- fn: string;
22
- })[];
23
- 'jest/no-large-snapshots': string;
24
- 'jest/prefer-expect-resolves': string;
25
- 'jest/prefer-lowercase-title': (string | {
26
- ignore: string[];
27
- })[];
28
- 'jest/prefer-spy-on': string;
29
- 'jest/require-top-level-describe': string;
30
- 'jest/prefer-to-contain': string;
31
- 'jest/prefer-hooks-on-top': string;
32
- 'jest/prefer-equality-matcher': string;
33
- 'jest/no-test-return-statement': string;
34
- 'function-call-argument-newline': string[];
35
- 'no-underscore-dangle': string;
36
- 'import/no-default-export': string;
37
- 'array-element-newline': string[];
38
- 'import-newlines/enforce': (string | {
39
- items: number;
40
- 'max-len': number;
41
- })[];
42
- 'no-smart-quotes/no-smart-quotes': string;
43
- 'no-shadow': string;
44
- 'import/prefer-default-export': string;
45
- 'import/no-extraneous-dependencies': string;
46
- 'no-use-before-define': (string | {
47
- functions: boolean;
48
- })[];
49
- 'arrow-parens': string[];
50
- 'class-methods-use-this': string;
51
- 'consistent-return': string;
52
- 'default-case': string;
53
- 'import/extensions': (string | {
54
- d: string;
55
- json: string;
56
- })[];
57
- 'import/no-unresolved': string;
58
- indent: (string | number | {
59
- SwitchCase: number;
60
- })[];
61
- 'linebreak-style': string[];
62
- 'max-classes-per-file': string;
63
- 'max-len': (string | {
64
- code: number;
65
- ignoreStrings: boolean;
66
- ignoreComments: boolean;
67
- ignoreTemplateLiterals: boolean;
68
- ignoreTrailingComments: boolean;
69
- ignoreUrls: boolean;
70
- })[];
71
- 'no-await-in-loop': string;
72
- 'no-bitwise': string;
73
- 'no-continue': string;
74
- 'no-multiple-empty-lines': (string | {
75
- max: number;
76
- maxEOF: number;
77
- maxBOF: number;
78
- })[];
79
- 'no-unused-expressions': string;
80
- 'no-unused-vars': (string | {
81
- args: string;
82
- ignoreRestSiblings: boolean;
83
- })[];
84
- 'no-restricted-syntax': string[];
85
- 'object-curly-newline': (string | {
86
- multiline: boolean;
87
- consistent: boolean;
88
- })[];
89
- 'object-curly-spacing': string[];
90
- 'require-await': string;
91
- 'object-shorthand': string[];
92
- 'padding-line-between-statements': (string | {
93
- blankLine: string;
94
- prev: string;
95
- next: string[];
96
- } | {
97
- blankLine: string;
98
- prev: string[];
99
- next: string[];
100
- } | {
101
- blankLine: string;
102
- prev: string[];
103
- next: string;
104
- })[];
105
- 'no-useless-escape': string;
106
- 'newline-destructuring/newline': (string | {
107
- maxLength: number;
108
- itemsWithRest: number;
109
- items: number;
110
- })[];
111
- 'jsx-quotes': string[];
112
- };
113
- overrides: {
114
- files: string[];
115
- extends: string[];
116
- plugins: string[];
117
- rules: {
118
- 'no-new-object': string;
119
- };
120
- env: {
121
- jest: boolean;
122
- };
123
- }[];
124
- };
@@ -1,68 +0,0 @@
1
- export declare const react: {
2
- extends: string[];
3
- plugins: string[];
4
- rules: {
5
- '@croct/jsx-attribute-spacing': string;
6
- 'react/destructuring-assignment': string;
7
- 'react/jsx-wrap-multilines': string;
8
- 'react/display-name': string;
9
- 'react/jsx-sort-props': (string | {
10
- noSortAlphabetically: boolean;
11
- multiline: string;
12
- })[];
13
- 'react/jsx-newline': (string | {
14
- prevent: boolean;
15
- })[];
16
- 'react/jsx-no-bind': (string | {
17
- allowArrowFunctions: boolean;
18
- allowBind: boolean;
19
- allowFunctions: boolean;
20
- })[];
21
- 'react/no-unstable-nested-components': (string | {
22
- allowAsProps: boolean;
23
- })[];
24
- 'react/jsx-no-useless-fragment': (string | {
25
- allowExpressions: boolean;
26
- })[];
27
- 'react/function-component-definition': string;
28
- 'testing-library/no-container': string;
29
- 'testing-library/no-node-access': string;
30
- 'testing-library/await-async-utils': string;
31
- 'jsx-a11y/aria-role': (string | {
32
- ignoreNonDOM: boolean;
33
- })[];
34
- 'react/jsx-uses-react': string;
35
- 'react/react-in-jsx-scope': string;
36
- 'react/jsx-one-expression-per-line': string;
37
- 'react/prop-types': string;
38
- 'react/require-default-props': string;
39
- 'react/jsx-fragments': string[];
40
- 'react-hooks/rules-of-hooks': string;
41
- 'react-hooks/exhaustive-deps': string;
42
- 'react/jsx-filename-extension': (number | {
43
- extensions: string[];
44
- })[];
45
- 'react/jsx-indent': (string | number)[];
46
- 'react/jsx-indent-props': string;
47
- 'react/jsx-props-no-spreading': string;
48
- 'no-restricted-imports': (string | {
49
- name: string;
50
- importNames: string[];
51
- message: string;
52
- })[];
53
- 'import/order': (string | {
54
- groups: string[];
55
- pathGroups: {
56
- pattern: string;
57
- group: string;
58
- position: string;
59
- }[];
60
- pathGroupsExcludedImportTypes: string[];
61
- 'newlines-between': string;
62
- alphabetize: {
63
- order: string;
64
- caseInsensitive: boolean;
65
- };
66
- })[];
67
- };
68
- };
@@ -1,116 +0,0 @@
1
- export declare const typescript: {
2
- extends: string[];
3
- plugins: string[];
4
- overrides: ({
5
- files: string[];
6
- extends: string[];
7
- parser: string;
8
- rules: {
9
- 'import/export': string;
10
- '@typescript-eslint/array-type': (string | {
11
- default: string;
12
- })[];
13
- '@typescript-eslint/prefer-as-const': string;
14
- '@typescript-eslint/adjacent-overload-signatures': string;
15
- '@typescript-eslint/type-annotation-spacing': string;
16
- '@typescript-eslint/semi': string[];
17
- '@typescript-eslint/strict-boolean-expressions': (string | {
18
- allowString: boolean;
19
- allowNumber: boolean;
20
- allowNullableObject: boolean;
21
- })[];
22
- '@typescript-eslint/prefer-optional-chain': string;
23
- 'no-shadow': string;
24
- '@typescript-eslint/no-shadow': (string | {
25
- ignoreTypeValueShadow: boolean;
26
- ignoreFunctionTypeParameterNameValueShadow: boolean;
27
- })[];
28
- '@typescript-eslint/no-empty-interface': string;
29
- '@typescript-eslint/explicit-member-accessibility': string[];
30
- '@typescript-eslint/explicit-module-boundary-types': string;
31
- '@typescript-eslint/explicit-function-return-type': string[];
32
- '@typescript-eslint/no-explicit-any': string;
33
- 'no-use-before-define': string;
34
- '@typescript-eslint/no-use-before-define': (string | {
35
- functions: boolean;
36
- })[];
37
- 'no-unused-expressions': string;
38
- '@typescript-eslint/no-unused-expressions': string;
39
- indent: (string | number | {
40
- SwitchCase: number;
41
- })[];
42
- '@typescript-eslint/no-unused-vars': (string | {
43
- args: string;
44
- ignoreRestSiblings: boolean;
45
- })[];
46
- 'no-unused-vars': string;
47
- '@typescript-eslint/no-non-null-assertion': string;
48
- 'object-curly-spacing': string;
49
- '@typescript-eslint/object-curly-spacing': string;
50
- '@typescript-eslint/member-delimiter-style': (string | {
51
- multiline: {
52
- delimiter: string;
53
- requireLast: boolean;
54
- };
55
- singleline: {
56
- delimiter: string;
57
- requireLast: boolean;
58
- };
59
- overrides: {
60
- interface: {
61
- singleline: {
62
- delimiter: string;
63
- };
64
- multiline: {
65
- delimiter: string;
66
- };
67
- };
68
- };
69
- })[];
70
- 'no-undef': string;
71
- '@typescript-eslint/no-namespace': string;
72
- 'no-new-object'?: undefined;
73
- };
74
- plugins?: undefined;
75
- env?: undefined;
76
- } | {
77
- files: string[];
78
- extends: string[];
79
- plugins: string[];
80
- rules: {
81
- 'no-new-object': string;
82
- 'import/export'?: undefined;
83
- '@typescript-eslint/array-type'?: undefined;
84
- '@typescript-eslint/prefer-as-const'?: undefined;
85
- '@typescript-eslint/adjacent-overload-signatures'?: undefined;
86
- '@typescript-eslint/type-annotation-spacing'?: undefined;
87
- '@typescript-eslint/semi'?: undefined;
88
- '@typescript-eslint/strict-boolean-expressions'?: undefined;
89
- '@typescript-eslint/prefer-optional-chain'?: undefined;
90
- 'no-shadow'?: undefined;
91
- '@typescript-eslint/no-shadow'?: undefined;
92
- '@typescript-eslint/no-empty-interface'?: undefined;
93
- '@typescript-eslint/explicit-member-accessibility'?: undefined;
94
- '@typescript-eslint/explicit-module-boundary-types'?: undefined;
95
- '@typescript-eslint/explicit-function-return-type'?: undefined;
96
- '@typescript-eslint/no-explicit-any'?: undefined;
97
- 'no-use-before-define'?: undefined;
98
- '@typescript-eslint/no-use-before-define'?: undefined;
99
- 'no-unused-expressions'?: undefined;
100
- '@typescript-eslint/no-unused-expressions'?: undefined;
101
- indent?: undefined;
102
- '@typescript-eslint/no-unused-vars'?: undefined;
103
- 'no-unused-vars'?: undefined;
104
- '@typescript-eslint/no-non-null-assertion'?: undefined;
105
- 'object-curly-spacing'?: undefined;
106
- '@typescript-eslint/object-curly-spacing'?: undefined;
107
- '@typescript-eslint/member-delimiter-style'?: undefined;
108
- 'no-undef'?: undefined;
109
- '@typescript-eslint/no-namespace'?: undefined;
110
- };
111
- env: {
112
- jest: boolean;
113
- };
114
- parser?: undefined;
115
- })[];
116
- };
package/index.d.ts DELETED
@@ -1,358 +0,0 @@
1
- declare const configuration: {
2
- rules: {
3
- 'argument-spacing': import("@typescript-eslint/utils/dist/ts-eslint/Rule").RuleModule<"missing", never[], {
4
- CallExpression: (node: import("@typescript-eslint/types/dist/generated/ast-spec").CallExpression | import("@typescript-eslint/types/dist/generated/ast-spec").NewExpression) => void;
5
- NewExpression: (node: import("@typescript-eslint/types/dist/generated/ast-spec").CallExpression | import("@typescript-eslint/types/dist/generated/ast-spec").NewExpression) => void;
6
- }>;
7
- 'jsx-attribute-spacing': import("@typescript-eslint/utils/dist/ts-eslint/Rule").RuleModule<"missing", never[], {
8
- JSXAttribute: (node: import("@typescript-eslint/types/dist/generated/ast-spec").JSXAttribute) => void;
9
- }>;
10
- 'complex-expression-spacing': import("@typescript-eslint/utils/dist/ts-eslint/Rule").RuleModule<"missing", never[], {
11
- ArrowFunctionExpression: (node: import("@typescript-eslint/types/dist/generated/ast-spec").ArrowFunctionExpression) => void;
12
- IfStatement: (node: import("@typescript-eslint/types/dist/generated/ast-spec").IfStatement) => void;
13
- }>;
14
- 'newline-per-chained-call': import("@typescript-eslint/utils/dist/ts-eslint/Rule").RuleModule<"expectedLineBreak", {
15
- ignoreChainDeeperThan: number;
16
- }[], {
17
- CallExpression: (node: import("@typescript-eslint/types/dist/generated/ast-spec").CallExpression) => void;
18
- MemberExpression: (node: import("@typescript-eslint/types/dist/generated/ast-spec").MemberExpression) => void;
19
- }>;
20
- 'min-chained-call-depth': import("@typescript-eslint/utils/dist/ts-eslint/Rule").RuleModule<"unexpectedLineBreak", ({
21
- maxLineLength: number;
22
- ignoreChainDeeperThan?: undefined;
23
- } | {
24
- ignoreChainDeeperThan: number;
25
- maxLineLength?: undefined;
26
- })[], {
27
- CallExpression: (node: import("@typescript-eslint/types/dist/generated/ast-spec").CallExpression) => void;
28
- MemberExpression: (node: import("@typescript-eslint/types/dist/generated/ast-spec").MemberExpression) => void;
29
- }>;
30
- 'parameter-destructuring': import("@typescript-eslint/utils/dist/ts-eslint/Rule").RuleModule<"unexpectedDestructuring", never[], {
31
- ObjectPattern: (node: import("@typescript-eslint/types/dist/generated/ast-spec").ObjectPattern) => void;
32
- }>;
33
- };
34
- configs: {
35
- cypress: {
36
- extends: string[];
37
- plugins: string[];
38
- rules: {
39
- 'no-loop-func': number;
40
- 'cypress/no-assigning-return-values': string;
41
- 'cypress/no-unnecessary-waiting': string;
42
- 'cypress/assertion-before-screenshot': string;
43
- 'cypress/no-async-tests': string;
44
- 'cypress/no-pause': string;
45
- '@typescript-eslint/no-namespace': string;
46
- };
47
- };
48
- react: {
49
- extends: string[];
50
- plugins: string[];
51
- rules: {
52
- '@croct/jsx-attribute-spacing': string;
53
- 'react/destructuring-assignment': string;
54
- 'react/jsx-wrap-multilines': string;
55
- 'react/display-name': string;
56
- 'react/jsx-sort-props': (string | {
57
- noSortAlphabetically: boolean;
58
- multiline: string;
59
- })[];
60
- 'react/jsx-newline': (string | {
61
- prevent: boolean;
62
- })[];
63
- 'react/jsx-no-bind': (string | {
64
- allowArrowFunctions: boolean;
65
- allowBind: boolean;
66
- allowFunctions: boolean;
67
- })[];
68
- 'react/no-unstable-nested-components': (string | {
69
- allowAsProps: boolean;
70
- })[];
71
- 'react/jsx-no-useless-fragment': (string | {
72
- allowExpressions: boolean;
73
- })[];
74
- 'react/function-component-definition': string;
75
- 'testing-library/no-container': string;
76
- 'testing-library/no-node-access': string;
77
- 'testing-library/await-async-utils': string;
78
- 'jsx-a11y/aria-role': (string | {
79
- ignoreNonDOM: boolean;
80
- })[];
81
- 'react/jsx-uses-react': string;
82
- 'react/react-in-jsx-scope': string;
83
- 'react/jsx-one-expression-per-line': string;
84
- 'react/prop-types': string;
85
- 'react/require-default-props': string;
86
- 'react/jsx-fragments': string[];
87
- 'react-hooks/rules-of-hooks': string;
88
- 'react-hooks/exhaustive-deps': string;
89
- 'react/jsx-filename-extension': (number | {
90
- extensions: string[];
91
- })[];
92
- 'react/jsx-indent': (string | number)[];
93
- 'react/jsx-indent-props': string;
94
- 'react/jsx-props-no-spreading': string;
95
- 'no-restricted-imports': (string | {
96
- name: string;
97
- importNames: string[];
98
- message: string;
99
- })[];
100
- 'import/order': (string | {
101
- groups: string[];
102
- pathGroups: {
103
- pattern: string;
104
- group: string;
105
- position: string;
106
- }[];
107
- pathGroupsExcludedImportTypes: string[];
108
- 'newlines-between': string;
109
- alphabetize: {
110
- order: string;
111
- caseInsensitive: boolean;
112
- };
113
- })[];
114
- };
115
- };
116
- typescript: {
117
- extends: string[];
118
- plugins: string[];
119
- overrides: ({
120
- files: string[];
121
- extends: string[];
122
- parser: string;
123
- rules: {
124
- 'import/export': string;
125
- '@typescript-eslint/array-type': (string | {
126
- default: string;
127
- })[];
128
- '@typescript-eslint/prefer-as-const': string;
129
- '@typescript-eslint/adjacent-overload-signatures': string;
130
- '@typescript-eslint/type-annotation-spacing': string;
131
- '@typescript-eslint/semi': string[];
132
- '@typescript-eslint/strict-boolean-expressions': (string | {
133
- allowString: boolean;
134
- allowNumber: boolean;
135
- allowNullableObject: boolean;
136
- })[];
137
- '@typescript-eslint/prefer-optional-chain': string;
138
- 'no-shadow': string;
139
- '@typescript-eslint/no-shadow': (string | {
140
- ignoreTypeValueShadow: boolean;
141
- ignoreFunctionTypeParameterNameValueShadow: boolean;
142
- })[];
143
- '@typescript-eslint/no-empty-interface': string;
144
- '@typescript-eslint/explicit-member-accessibility': string[];
145
- '@typescript-eslint/explicit-module-boundary-types': string;
146
- '@typescript-eslint/explicit-function-return-type': string[];
147
- '@typescript-eslint/no-explicit-any': string;
148
- 'no-use-before-define': string;
149
- '@typescript-eslint/no-use-before-define': (string | {
150
- functions: boolean;
151
- })[];
152
- 'no-unused-expressions': string;
153
- '@typescript-eslint/no-unused-expressions': string;
154
- indent: (string | number | {
155
- SwitchCase: number;
156
- })[];
157
- '@typescript-eslint/no-unused-vars': (string | {
158
- args: string;
159
- ignoreRestSiblings: boolean;
160
- })[];
161
- 'no-unused-vars': string;
162
- '@typescript-eslint/no-non-null-assertion': string;
163
- 'object-curly-spacing': string;
164
- '@typescript-eslint/object-curly-spacing': string;
165
- '@typescript-eslint/member-delimiter-style': (string | {
166
- multiline: {
167
- delimiter: string;
168
- requireLast: boolean;
169
- };
170
- singleline: {
171
- delimiter: string;
172
- requireLast: boolean;
173
- };
174
- overrides: {
175
- interface: {
176
- singleline: {
177
- delimiter: string;
178
- };
179
- multiline: {
180
- delimiter: string;
181
- };
182
- };
183
- };
184
- })[];
185
- 'no-undef': string;
186
- '@typescript-eslint/no-namespace': string;
187
- 'no-new-object'?: undefined;
188
- };
189
- plugins?: undefined;
190
- env?: undefined;
191
- } | {
192
- files: string[];
193
- extends: string[];
194
- plugins: string[];
195
- rules: {
196
- 'no-new-object': string;
197
- 'import/export'?: undefined;
198
- '@typescript-eslint/array-type'?: undefined;
199
- '@typescript-eslint/prefer-as-const'?: undefined;
200
- '@typescript-eslint/adjacent-overload-signatures'?: undefined;
201
- '@typescript-eslint/type-annotation-spacing'?: undefined;
202
- '@typescript-eslint/semi'?: undefined;
203
- '@typescript-eslint/strict-boolean-expressions'?: undefined;
204
- '@typescript-eslint/prefer-optional-chain'?: undefined;
205
- 'no-shadow'?: undefined;
206
- '@typescript-eslint/no-shadow'?: undefined;
207
- '@typescript-eslint/no-empty-interface'?: undefined;
208
- '@typescript-eslint/explicit-member-accessibility'?: undefined;
209
- '@typescript-eslint/explicit-module-boundary-types'?: undefined;
210
- '@typescript-eslint/explicit-function-return-type'?: undefined;
211
- '@typescript-eslint/no-explicit-any'?: undefined;
212
- 'no-use-before-define'?: undefined;
213
- '@typescript-eslint/no-use-before-define'?: undefined;
214
- 'no-unused-expressions'?: undefined;
215
- '@typescript-eslint/no-unused-expressions'?: undefined;
216
- indent?: undefined;
217
- '@typescript-eslint/no-unused-vars'?: undefined;
218
- 'no-unused-vars'?: undefined;
219
- '@typescript-eslint/no-non-null-assertion'?: undefined;
220
- 'object-curly-spacing'?: undefined;
221
- '@typescript-eslint/object-curly-spacing'?: undefined;
222
- '@typescript-eslint/member-delimiter-style'?: undefined;
223
- 'no-undef'?: undefined;
224
- '@typescript-eslint/no-namespace'?: undefined;
225
- };
226
- env: {
227
- jest: boolean;
228
- };
229
- parser?: undefined;
230
- })[];
231
- };
232
- javascript: {
233
- extends: string[];
234
- plugins: string[];
235
- rules: {
236
- '@croct/argument-spacing': string;
237
- '@croct/complex-expression-spacing': string;
238
- '@croct/newline-per-chained-call': string;
239
- '@croct/min-chained-call-depth': string;
240
- '@croct/parameter-destructuring': string;
241
- 'eslint-comments/disable-enable-pair': (string | {
242
- allowWholeFile: boolean;
243
- })[];
244
- 'eslint-comments/require-description': string;
245
- 'eslint-comments/no-unused-disable': string;
246
- 'newline-per-chained-call': string;
247
- 'no-plusplus': string;
248
- 'array-bracket-newline': string[];
249
- 'multiline-ternary': string[];
250
- 'no-undef-init': string;
251
- 'jest/consistent-test-it': (string | {
252
- fn: string;
253
- })[];
254
- 'jest/no-large-snapshots': string;
255
- 'jest/prefer-expect-resolves': string;
256
- 'jest/prefer-lowercase-title': (string | {
257
- ignore: string[];
258
- })[];
259
- 'jest/prefer-spy-on': string;
260
- 'jest/require-top-level-describe': string;
261
- 'jest/prefer-to-contain': string;
262
- 'jest/prefer-hooks-on-top': string;
263
- 'jest/prefer-equality-matcher': string;
264
- 'jest/no-test-return-statement': string;
265
- 'function-call-argument-newline': string[];
266
- 'no-underscore-dangle': string;
267
- 'import/no-default-export': string;
268
- 'array-element-newline': string[];
269
- 'import-newlines/enforce': (string | {
270
- items: number;
271
- 'max-len': number;
272
- })[];
273
- 'no-smart-quotes/no-smart-quotes': string;
274
- 'no-shadow': string;
275
- 'import/prefer-default-export': string;
276
- 'import/no-extraneous-dependencies': string;
277
- 'no-use-before-define': (string | {
278
- functions: boolean;
279
- })[];
280
- 'arrow-parens': string[];
281
- 'class-methods-use-this': string;
282
- 'consistent-return': string;
283
- 'default-case': string;
284
- 'import/extensions': (string | {
285
- d: string;
286
- json: string;
287
- })[];
288
- 'import/no-unresolved': string;
289
- indent: (string | number | {
290
- SwitchCase: number;
291
- })[];
292
- 'linebreak-style': string[];
293
- 'max-classes-per-file': string;
294
- 'max-len': (string | {
295
- code: number;
296
- ignoreStrings: boolean;
297
- ignoreComments: boolean;
298
- ignoreTemplateLiterals: boolean;
299
- ignoreTrailingComments: boolean;
300
- ignoreUrls: boolean;
301
- })[];
302
- 'no-await-in-loop': string;
303
- 'no-bitwise': string;
304
- 'no-continue': string;
305
- 'no-multiple-empty-lines': (string | {
306
- max: number;
307
- maxEOF: number;
308
- maxBOF: number;
309
- })[];
310
- 'no-unused-expressions': string;
311
- 'no-unused-vars': (string | {
312
- args: string;
313
- ignoreRestSiblings: boolean;
314
- })[];
315
- 'no-restricted-syntax': string[];
316
- 'object-curly-newline': (string | {
317
- multiline: boolean;
318
- consistent: boolean;
319
- })[];
320
- 'object-curly-spacing': string[];
321
- 'require-await': string;
322
- 'object-shorthand': string[];
323
- 'padding-line-between-statements': (string | {
324
- blankLine: string;
325
- prev: string;
326
- next: string[];
327
- } | {
328
- blankLine: string;
329
- prev: string[];
330
- next: string[];
331
- } | {
332
- blankLine: string;
333
- prev: string[];
334
- next: string;
335
- })[];
336
- 'no-useless-escape': string;
337
- 'newline-destructuring/newline': (string | {
338
- maxLength: number;
339
- itemsWithRest: number;
340
- items: number;
341
- })[];
342
- 'jsx-quotes': string[];
343
- };
344
- overrides: {
345
- files: string[];
346
- extends: string[];
347
- plugins: string[];
348
- rules: {
349
- 'no-new-object': string;
350
- };
351
- env: {
352
- jest: boolean;
353
- };
354
- }[];
355
- };
356
- };
357
- };
358
- export = configuration;
@@ -1,5 +0,0 @@
1
- import { TSESTree } from '@typescript-eslint/experimental-utils';
2
- export declare const argumentSpacing: import("@typescript-eslint/utils/dist/ts-eslint/Rule").RuleModule<"missing", never[], {
3
- CallExpression: (node: TSESTree.NewExpression | TSESTree.CallExpression) => void;
4
- NewExpression: (node: TSESTree.NewExpression | TSESTree.CallExpression) => void;
5
- }>;
@@ -1,5 +0,0 @@
1
- import { TSESTree } from '@typescript-eslint/experimental-utils';
2
- export declare const complexExpressionSpacing: import("@typescript-eslint/utils/dist/ts-eslint/Rule").RuleModule<"missing", never[], {
3
- ArrowFunctionExpression: (node: TSESTree.ArrowFunctionExpression) => void;
4
- IfStatement: (node: TSESTree.IfStatement) => void;
5
- }>;