eslint-config-airbnb-extended 0.0.6 → 0.0.7

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,151 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = {
4
- name: 'airbnb/config/errors',
5
- rules: {
6
- // Enforce “for” loop update clause moving the counter in the right direction
7
- // https://eslint.org/docs/rules/for-direction
8
- 'for-direction': 'error',
9
- // Enforces that a return statement is present in property getters
10
- // https://eslint.org/docs/rules/getter-return
11
- 'getter-return': ['error', { allowImplicit: true }],
12
- // disallow using an async function as a Promise executor
13
- // https://eslint.org/docs/rules/no-async-promise-executor
14
- 'no-async-promise-executor': 'error',
15
- // Disallow await inside of loops
16
- // https://eslint.org/docs/rules/no-await-in-loop
17
- 'no-await-in-loop': 'error',
18
- // Disallow comparisons to negative zero
19
- // https://eslint.org/docs/rules/no-compare-neg-zero
20
- 'no-compare-neg-zero': 'error',
21
- // disallow assignment in conditional expressions
22
- 'no-cond-assign': ['error', 'always'],
23
- // disallow use of console
24
- 'no-console': 'warn',
25
- // Disallows expressions where the operation doesn't affect the value
26
- // https://eslint.org/docs/rules/no-constant-binary-expression
27
- // TODO: semver-major, enable
28
- 'no-constant-binary-expression': 'off',
29
- // disallow use of constant expressions in conditions
30
- 'no-constant-condition': 'warn',
31
- // disallow control characters in regular expressions
32
- 'no-control-regex': 'error',
33
- // disallow use of debugger
34
- 'no-debugger': 'error',
35
- // disallow duplicate arguments in functions
36
- 'no-dupe-args': 'error',
37
- // Disallow duplicate conditions in if-else-if chains
38
- // https://eslint.org/docs/rules/no-dupe-else-if
39
- 'no-dupe-else-if': 'error',
40
- // disallow duplicate keys when creating object literals
41
- 'no-dupe-keys': 'error',
42
- // disallow a duplicate case label.
43
- 'no-duplicate-case': 'error',
44
- // disallow empty statements
45
- 'no-empty': 'error',
46
- // disallow the use of empty character classes in regular expressions
47
- 'no-empty-character-class': 'error',
48
- // disallow assigning to the exception in a catch block
49
- 'no-ex-assign': 'error',
50
- // disallow double-negation boolean casts in a boolean context
51
- // https://eslint.org/docs/rules/no-extra-boolean-cast
52
- 'no-extra-boolean-cast': 'error',
53
- // disallow unnecessary parentheses
54
- // https://eslint.org/docs/rules/no-extra-parens
55
- 'no-extra-parens': [
56
- 'off',
57
- 'all',
58
- {
59
- conditionalAssign: true,
60
- nestedBinaryExpressions: false,
61
- returnAssign: false,
62
- ignoreJSX: 'all', // delegate to eslint-plugin-react
63
- enforceForArrowConditionals: false,
64
- },
65
- ],
66
- // disallow unnecessary semicolons
67
- 'no-extra-semi': 'error',
68
- // disallow overwriting functions written as function declarations
69
- 'no-func-assign': 'error',
70
- // https://eslint.org/docs/rules/no-import-assign
71
- 'no-import-assign': 'error',
72
- // disallow function or variable declarations in nested blocks
73
- 'no-inner-declarations': 'error',
74
- // disallow invalid regular expression strings in the RegExp constructor
75
- 'no-invalid-regexp': 'error',
76
- // disallow irregular whitespace outside of strings and comments
77
- 'no-irregular-whitespace': 'error',
78
- // Disallow Number Literals That Lose Precision
79
- // https://eslint.org/docs/rules/no-loss-of-precision
80
- 'no-loss-of-precision': 'error',
81
- // Disallow characters which are made with multiple code points in character class syntax
82
- // https://eslint.org/docs/rules/no-misleading-character-class
83
- 'no-misleading-character-class': 'error',
84
- // disallow the use of object properties of the global object (Math and JSON) as functions
85
- 'no-obj-calls': 'error',
86
- // Disallow new operators with global non-constructor functions
87
- // https://eslint.org/docs/latest/rules/no-new-native-nonconstructor
88
- // TODO: semver-major, enable
89
- 'no-new-native-nonconstructor': 'off',
90
- // Disallow returning values from Promise executor functions
91
- // https://eslint.org/docs/rules/no-promise-executor-return
92
- 'no-promise-executor-return': 'error',
93
- // disallow use of Object.prototypes builtins directly
94
- // https://eslint.org/docs/rules/no-prototype-builtins
95
- 'no-prototype-builtins': 'error',
96
- // disallow multiple spaces in a regular expression literal
97
- 'no-regex-spaces': 'error',
98
- // Disallow returning values from setters
99
- // https://eslint.org/docs/rules/no-setter-return
100
- 'no-setter-return': 'error',
101
- // disallow sparse arrays
102
- 'no-sparse-arrays': 'error',
103
- // Disallow template literal placeholder syntax in regular strings
104
- // https://eslint.org/docs/rules/no-template-curly-in-string
105
- 'no-template-curly-in-string': 'error',
106
- // Avoid code that looks like two expressions but is actually one
107
- // https://eslint.org/docs/rules/no-unexpected-multiline
108
- 'no-unexpected-multiline': 'error',
109
- // disallow unreachable statements after a return, throw, continue, or break statement
110
- 'no-unreachable': 'error',
111
- // Disallow loops with a body that allows only one iteration
112
- // https://eslint.org/docs/rules/no-unreachable-loop
113
- 'no-unreachable-loop': [
114
- 'error',
115
- {
116
- ignore: [], // WhileStatement, DoWhileStatement, ForStatement, ForInStatement, ForOfStatement
117
- },
118
- ],
119
- // disallow return/throw/break/continue inside finally blocks
120
- // https://eslint.org/docs/rules/no-unsafe-finally
121
- 'no-unsafe-finally': 'error',
122
- // disallow negating the left operand of relational operators
123
- // https://eslint.org/docs/rules/no-unsafe-negation
124
- 'no-unsafe-negation': 'error',
125
- // disallow use of optional chaining in contexts where the undefined value is not allowed
126
- // https://eslint.org/docs/rules/no-unsafe-optional-chaining
127
- 'no-unsafe-optional-chaining': ['error', { disallowArithmeticOperators: true }],
128
- // Disallow Unused Private Class Members
129
- // https://eslint.org/docs/rules/no-unused-private-class-members
130
- // TODO: enable once eslint 7 is dropped (which is semver-major)
131
- 'no-unused-private-class-members': 'off',
132
- // Disallow useless backreferences in regular expressions
133
- // https://eslint.org/docs/rules/no-useless-backreference
134
- 'no-useless-backreference': 'error',
135
- // disallow negation of the left operand of an in expression
136
- // deprecated in favor of no-unsafe-negation
137
- 'no-negated-in-lhs': 'off',
138
- // Disallow assignments that can lead to race conditions due to usage of await or yield
139
- // https://eslint.org/docs/rules/require-atomic-updates
140
- // note: not enabled because it is very buggy
141
- 'require-atomic-updates': 'off',
142
- // disallow comparisons with the value NaN
143
- 'use-isnan': 'error',
144
- // ensure JSDoc comments are valid
145
- // https://eslint.org/docs/rules/valid-jsdoc
146
- 'valid-jsdoc': 'off',
147
- // ensure that the results of typeof are compared against a valid string
148
- // https://eslint.org/docs/rules/valid-typeof
149
- 'valid-typeof': ['error', { requireStringLiterals: true }],
150
- },
151
- };
@@ -1,146 +0,0 @@
1
- declare const _default: {
2
- name: string;
3
- languageOptions: {
4
- globals: {
5
- Array: false;
6
- ArrayBuffer: false;
7
- Boolean: false;
8
- DataView: false;
9
- Date: false;
10
- decodeURI: false;
11
- decodeURIComponent: false;
12
- encodeURI: false;
13
- encodeURIComponent: false;
14
- Error: false;
15
- escape: false;
16
- eval: false;
17
- EvalError: false;
18
- Float32Array: false;
19
- Float64Array: false;
20
- Function: false;
21
- Infinity: false;
22
- Int16Array: false;
23
- Int32Array: false;
24
- Int8Array: false;
25
- Intl: false;
26
- isFinite: false;
27
- isNaN: false;
28
- JSON: false;
29
- Map: false;
30
- Math: false;
31
- NaN: false;
32
- Number: false;
33
- Object: false;
34
- parseFloat: false;
35
- parseInt: false;
36
- Promise: false;
37
- Proxy: false;
38
- RangeError: false;
39
- ReferenceError: false;
40
- Reflect: false;
41
- RegExp: false;
42
- Set: false;
43
- String: false;
44
- Symbol: false;
45
- SyntaxError: false;
46
- TypeError: false;
47
- Uint16Array: false;
48
- Uint32Array: false;
49
- Uint8Array: false;
50
- Uint8ClampedArray: false;
51
- undefined: false;
52
- unescape: false;
53
- URIError: false;
54
- WeakMap: false;
55
- WeakSet: false;
56
- };
57
- parserOptions: {
58
- ecmaVersion: 6;
59
- sourceType: "module";
60
- ecmaFeatures: {
61
- generators: boolean;
62
- objectLiteralDuplicateProperties: boolean;
63
- };
64
- };
65
- };
66
- rules: {
67
- 'arrow-body-style': ["error", string, {
68
- requireReturnForObjectLiteral: boolean;
69
- }];
70
- 'arrow-parens': ["error", string];
71
- 'arrow-spacing': ["error", {
72
- before: boolean;
73
- after: boolean;
74
- }];
75
- 'constructor-super': "error";
76
- 'generator-star-spacing': ["error", {
77
- before: boolean;
78
- after: boolean;
79
- }];
80
- 'no-class-assign': "error";
81
- 'no-confusing-arrow': ["error", {
82
- allowParens: boolean;
83
- }];
84
- 'no-const-assign': "error";
85
- 'no-dupe-class-members': "error";
86
- 'no-duplicate-imports': "off";
87
- 'no-new-symbol': "error";
88
- 'no-restricted-exports': ["error", {
89
- restrictedNamedExports: string[];
90
- }];
91
- 'no-restricted-imports': ["off", {
92
- paths: never[];
93
- patterns: never[];
94
- }];
95
- 'no-this-before-super': "error";
96
- 'no-useless-computed-key': "error";
97
- 'no-useless-constructor': "error";
98
- 'no-useless-rename': ["error", {
99
- ignoreDestructuring: boolean;
100
- ignoreImport: boolean;
101
- ignoreExport: boolean;
102
- }];
103
- 'no-var': "error";
104
- 'object-shorthand': ["error", string, {
105
- ignoreConstructors: boolean;
106
- avoidQuotes: boolean;
107
- }];
108
- 'prefer-arrow-callback': ["error", {
109
- allowNamedFunctions: boolean;
110
- allowUnboundThis: boolean;
111
- }];
112
- 'prefer-const': ["error", {
113
- destructuring: string;
114
- ignoreReadBeforeAssign: boolean;
115
- }];
116
- 'prefer-destructuring': ["error", {
117
- VariableDeclarator: {
118
- array: boolean;
119
- object: boolean;
120
- };
121
- AssignmentExpression: {
122
- array: boolean;
123
- object: boolean;
124
- };
125
- }, {
126
- enforceForRenamedProperties: boolean;
127
- }];
128
- 'prefer-numeric-literals': "error";
129
- 'prefer-reflect': "off";
130
- 'prefer-rest-params': "error";
131
- 'prefer-spread': "error";
132
- 'prefer-template': "error";
133
- 'require-yield': "error";
134
- 'rest-spread-spacing': ["error", string];
135
- 'sort-imports': ["off", {
136
- ignoreCase: boolean;
137
- ignoreDeclarationSort: boolean;
138
- ignoreMemberSort: boolean;
139
- memberSyntaxSortOrder: string[];
140
- }];
141
- 'symbol-description': "error";
142
- 'template-curly-spacing': "error";
143
- 'yield-star-spacing': ["error", string];
144
- };
145
- };
146
- export default _default;
@@ -1,203 +0,0 @@
1
- "use strict";
2
- var __assign = (this && this.__assign) || function () {
3
- __assign = Object.assign || function(t) {
4
- for (var s, i = 1, n = arguments.length; i < n; i++) {
5
- s = arguments[i];
6
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
- t[p] = s[p];
8
- }
9
- return t;
10
- };
11
- return __assign.apply(this, arguments);
12
- };
13
- var __importDefault = (this && this.__importDefault) || function (mod) {
14
- return (mod && mod.__esModule) ? mod : { "default": mod };
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- var globals_1 = __importDefault(require("globals"));
18
- exports.default = {
19
- name: 'airbnb/config/es6',
20
- languageOptions: {
21
- globals: __assign({}, globals_1.default.es2015),
22
- parserOptions: {
23
- ecmaVersion: 6,
24
- sourceType: 'module',
25
- ecmaFeatures: {
26
- generators: false,
27
- objectLiteralDuplicateProperties: false,
28
- },
29
- },
30
- },
31
- rules: {
32
- // enforces no braces where they can be omitted
33
- // https://eslint.org/docs/rules/arrow-body-style
34
- // TODO: enable requireReturnForObjectLiteral?
35
- 'arrow-body-style': [
36
- 'error',
37
- 'as-needed',
38
- {
39
- requireReturnForObjectLiteral: false,
40
- },
41
- ],
42
- // require parens in arrow function arguments
43
- // https://eslint.org/docs/rules/arrow-parens
44
- 'arrow-parens': ['error', 'always'],
45
- // require space before/after arrow function's arrow
46
- // https://eslint.org/docs/rules/arrow-spacing
47
- 'arrow-spacing': ['error', { before: true, after: true }],
48
- // verify super() callings in constructors
49
- 'constructor-super': 'error',
50
- // enforce the spacing around the * in generator functions
51
- // https://eslint.org/docs/rules/generator-star-spacing
52
- 'generator-star-spacing': ['error', { before: false, after: true }],
53
- // disallow modifying variables of class declarations
54
- // https://eslint.org/docs/rules/no-class-assign
55
- 'no-class-assign': 'error',
56
- // disallow arrow functions where they could be confused with comparisons
57
- // https://eslint.org/docs/rules/no-confusing-arrow
58
- 'no-confusing-arrow': [
59
- 'error',
60
- {
61
- allowParens: true,
62
- },
63
- ],
64
- // disallow modifying variables that are declared using const
65
- 'no-const-assign': 'error',
66
- // disallow duplicate class members
67
- // https://eslint.org/docs/rules/no-dupe-class-members
68
- 'no-dupe-class-members': 'error',
69
- // disallow importing from the same path more than once
70
- // https://eslint.org/docs/rules/no-duplicate-imports
71
- // replaced by https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/no-duplicates.md
72
- 'no-duplicate-imports': 'off',
73
- // disallow symbol constructor
74
- // https://eslint.org/docs/rules/no-new-symbol
75
- 'no-new-symbol': 'error',
76
- // Disallow specified names in exports
77
- // https://eslint.org/docs/rules/no-restricted-exports
78
- 'no-restricted-exports': [
79
- 'error',
80
- {
81
- restrictedNamedExports: [
82
- 'default', // use `export default` to provide a default export
83
- 'then', // this will cause tons of confusion when your module is dynamically `import()`ed, and will break in most node ESM versions
84
- ],
85
- },
86
- ],
87
- // disallow specific imports
88
- // https://eslint.org/docs/rules/no-restricted-imports
89
- 'no-restricted-imports': [
90
- 'off',
91
- {
92
- paths: [],
93
- patterns: [],
94
- },
95
- ],
96
- // disallow to use this/super before super() calling in constructors.
97
- // https://eslint.org/docs/rules/no-this-before-super
98
- 'no-this-before-super': 'error',
99
- // disallow useless computed property keys
100
- // https://eslint.org/docs/rules/no-useless-computed-key
101
- 'no-useless-computed-key': 'error',
102
- // disallow unnecessary constructor
103
- // https://eslint.org/docs/rules/no-useless-constructor
104
- 'no-useless-constructor': 'error',
105
- // disallow renaming import, export, and destructured assignments to the same name
106
- // https://eslint.org/docs/rules/no-useless-rename
107
- 'no-useless-rename': [
108
- 'error',
109
- {
110
- ignoreDestructuring: false,
111
- ignoreImport: false,
112
- ignoreExport: false,
113
- },
114
- ],
115
- // require let or const instead of var
116
- 'no-var': 'error',
117
- // require method and property shorthand syntax for object literals
118
- // https://eslint.org/docs/rules/object-shorthand
119
- 'object-shorthand': [
120
- 'error',
121
- 'always',
122
- {
123
- ignoreConstructors: false,
124
- avoidQuotes: true,
125
- },
126
- ],
127
- // suggest using arrow functions as callbacks
128
- 'prefer-arrow-callback': [
129
- 'error',
130
- {
131
- allowNamedFunctions: false,
132
- allowUnboundThis: true,
133
- },
134
- ],
135
- // suggest using of const declaration for variables that are never modified after declared
136
- 'prefer-const': [
137
- 'error',
138
- {
139
- destructuring: 'any',
140
- ignoreReadBeforeAssign: true,
141
- },
142
- ],
143
- // Prefer destructuring from arrays and objects
144
- // https://eslint.org/docs/rules/prefer-destructuring
145
- 'prefer-destructuring': [
146
- 'error',
147
- {
148
- VariableDeclarator: {
149
- array: false,
150
- object: true,
151
- },
152
- AssignmentExpression: {
153
- array: true,
154
- object: false,
155
- },
156
- },
157
- {
158
- enforceForRenamedProperties: false,
159
- },
160
- ],
161
- // disallow parseInt() in favor of binary, octal, and hexadecimal literals
162
- // https://eslint.org/docs/rules/prefer-numeric-literals
163
- 'prefer-numeric-literals': 'error',
164
- // suggest using Reflect methods where applicable
165
- // https://eslint.org/docs/rules/prefer-reflect
166
- 'prefer-reflect': 'off',
167
- // use rest parameters instead of arguments
168
- // https://eslint.org/docs/rules/prefer-rest-params
169
- 'prefer-rest-params': 'error',
170
- // suggest using the spread syntax instead of .apply()
171
- // https://eslint.org/docs/rules/prefer-spread
172
- 'prefer-spread': 'error',
173
- // suggest using template literals instead of string concatenation
174
- // https://eslint.org/docs/rules/prefer-template
175
- 'prefer-template': 'error',
176
- // disallow generator functions that do not have yield
177
- // https://eslint.org/docs/rules/require-yield
178
- 'require-yield': 'error',
179
- // enforce spacing between object rest-spread
180
- // https://eslint.org/docs/rules/rest-spread-spacing
181
- 'rest-spread-spacing': ['error', 'never'],
182
- // import sorting
183
- // https://eslint.org/docs/rules/sort-imports
184
- 'sort-imports': [
185
- 'off',
186
- {
187
- ignoreCase: false,
188
- ignoreDeclarationSort: false,
189
- ignoreMemberSort: false,
190
- memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single'],
191
- },
192
- ],
193
- // require a Symbol description
194
- // https://eslint.org/docs/rules/symbol-description
195
- 'symbol-description': 'error',
196
- // enforce usage of spacing in template strings
197
- // https://eslint.org/docs/rules/template-curly-spacing
198
- 'template-curly-spacing': 'error',
199
- // enforce spacing around the * in yield* expressions
200
- // https://eslint.org/docs/rules/yield-star-spacing
201
- 'yield-star-spacing': ['error', 'after'],
202
- },
203
- };
@@ -1,165 +0,0 @@
1
- declare const _default: {
2
- name: string;
3
- languageOptions: {
4
- globals: {
5
- Array: false;
6
- ArrayBuffer: false;
7
- Boolean: false;
8
- DataView: false;
9
- Date: false;
10
- decodeURI: false;
11
- decodeURIComponent: false;
12
- encodeURI: false;
13
- encodeURIComponent: false;
14
- Error: false;
15
- escape: false;
16
- eval: false;
17
- EvalError: false;
18
- Float32Array: false;
19
- Float64Array: false;
20
- Function: false;
21
- Infinity: false;
22
- Int16Array: false;
23
- Int32Array: false;
24
- Int8Array: false;
25
- Intl: false;
26
- isFinite: false;
27
- isNaN: false;
28
- JSON: false;
29
- Map: false;
30
- Math: false;
31
- NaN: false;
32
- Number: false;
33
- Object: false;
34
- parseFloat: false;
35
- parseInt: false;
36
- Promise: false;
37
- Proxy: false;
38
- RangeError: false;
39
- ReferenceError: false;
40
- Reflect: false;
41
- RegExp: false;
42
- Set: false;
43
- String: false;
44
- Symbol: false;
45
- SyntaxError: false;
46
- TypeError: false;
47
- Uint16Array: false;
48
- Uint32Array: false;
49
- Uint8Array: false;
50
- Uint8ClampedArray: false;
51
- undefined: false;
52
- unescape: false;
53
- URIError: false;
54
- WeakMap: false;
55
- WeakSet: false;
56
- };
57
- parserOptions: {
58
- ecmaVersion: 6;
59
- sourceType: "module";
60
- };
61
- };
62
- plugins: {
63
- import: {
64
- meta: {
65
- name: string;
66
- version: string;
67
- };
68
- rules: any;
69
- };
70
- };
71
- settings: {
72
- 'import/resolver': {
73
- node: {
74
- extensions: string[];
75
- };
76
- };
77
- 'import/extensions': string[];
78
- 'import/core-modules': never[];
79
- 'import/ignore': string[];
80
- };
81
- rules: {
82
- 'import/no-unresolved': ["error", {
83
- commonjs: boolean;
84
- caseSensitive: boolean;
85
- }];
86
- 'import/named': "error";
87
- 'import/default': "off";
88
- 'import/namespace': "off";
89
- 'import/export': "error";
90
- 'import/no-named-as-default': "error";
91
- 'import/no-named-as-default-member': "error";
92
- 'import/no-deprecated': "off";
93
- 'import/no-extraneous-dependencies': ["error", {
94
- devDependencies: string[];
95
- optionalDependencies: boolean;
96
- }];
97
- 'import/no-mutable-exports': "error";
98
- 'import/no-commonjs': "off";
99
- 'import/no-amd': "error";
100
- 'import/no-nodejs-modules': "off";
101
- 'import/first': "error";
102
- 'import/imports-first': "off";
103
- 'import/no-duplicates': "error";
104
- 'import/no-namespace': "off";
105
- 'import/extensions': ["error", string, {
106
- js: string;
107
- mjs: string;
108
- jsx: string;
109
- }];
110
- 'import/order': ["error", {
111
- groups: string[][];
112
- }];
113
- 'import/newline-after-import': "error";
114
- 'import/prefer-default-export': "error";
115
- 'import/no-restricted-paths': "off";
116
- 'import/max-dependencies': ["off", {
117
- max: number;
118
- }];
119
- 'import/no-absolute-path': "error";
120
- 'import/no-dynamic-require': "error";
121
- 'import/no-internal-modules': ["off", {
122
- allow: never[];
123
- }];
124
- 'import/unambiguous': "off";
125
- 'import/no-webpack-loader-syntax': "error";
126
- 'import/no-unassigned-import': "off";
127
- 'import/no-named-default': "error";
128
- 'import/no-anonymous-default-export': ["off", {
129
- allowArray: boolean;
130
- allowArrowFunction: boolean;
131
- allowAnonymousClass: boolean;
132
- allowAnonymousFunction: boolean;
133
- allowLiteral: boolean;
134
- allowObject: boolean;
135
- }];
136
- 'import/exports-last': "off";
137
- 'import/group-exports': "off";
138
- 'import/no-default-export': "off";
139
- 'import/no-named-export': "off";
140
- 'import/no-self-import': "error";
141
- 'import/no-cycle': ["error", {
142
- maxDepth: string;
143
- }];
144
- 'import/no-useless-path-segments': ["error", {
145
- commonjs: boolean;
146
- }];
147
- 'import/dynamic-import-chunkname': ["off", {
148
- importFunctions: never[];
149
- webpackChunknameFormat: string;
150
- }];
151
- 'import/no-relative-parent-imports': "off";
152
- 'import/no-unused-modules': ["off", {
153
- ignoreExports: never[];
154
- missingExports: boolean;
155
- unusedExports: boolean;
156
- }];
157
- 'import/no-import-module-exports': ["error", {
158
- exceptions: never[];
159
- }];
160
- 'import/no-relative-packages': "error";
161
- 'import/consistent-type-specifier-style': ["off", string];
162
- 'import/no-empty-named-blocks': "off";
163
- };
164
- };
165
- export default _default;