1 | import { base } from './base';
|
2 | import { codeBlocks } from './code-blocks';
|
3 | import { flat, flatCodeBlocks } from './flat';
|
4 | import { overrides } from './overrides';
|
5 | import { recommended } from './recommended';
|
6 | export { base, codeBlocks, flat, flatCodeBlocks, overrides, recommended };
|
7 | export declare const configs: {
|
8 | base: import("eslint").Linter.Config<import("eslint").Linter.RulesRecord, import("eslint").Linter.RulesRecord>;
|
9 | 'code-blocks': {
|
10 | parserOptions: {
|
11 | ecmaFeatures: {
|
12 | impliedStrict: true;
|
13 | };
|
14 | };
|
15 | rules: {
|
16 | 'eol-last': "off";
|
17 | 'no-undef': "off";
|
18 | 'no-unused-expressions': "off";
|
19 | 'no-unused-vars': "off";
|
20 | 'padded-blocks': "off";
|
21 | strict: "off";
|
22 | 'unicode-bom': "off";
|
23 | };
|
24 | };
|
25 | codeBlocks: {
|
26 | parserOptions: {
|
27 | ecmaFeatures: {
|
28 | impliedStrict: true;
|
29 | };
|
30 | };
|
31 | rules: {
|
32 | 'eol-last': "off";
|
33 | 'no-undef': "off";
|
34 | 'no-unused-expressions': "off";
|
35 | 'no-unused-vars': "off";
|
36 | 'padded-blocks': "off";
|
37 | strict: "off";
|
38 | 'unicode-bom': "off";
|
39 | };
|
40 | };
|
41 | flat: import("eslint").Linter.FlatConfig;
|
42 | flatCodeBlocks: import("eslint").Linter.FlatConfig;
|
43 | overrides: import("eslint").Linter.Config<import("eslint").Linter.RulesRecord, import("eslint").Linter.RulesRecord>;
|
44 | recommended: import("eslint").Linter.Config<import("eslint").Linter.RulesRecord, import("eslint").Linter.RulesRecord>;
|
45 | };
|