-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoxlint-disabled.js
More file actions
34 lines (34 loc) · 1.15 KB
/
oxlint-disabled.js
File metadata and controls
34 lines (34 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
export const ESLintPluginImportDisabled = {
'import/no-named-as-default': 'off',
'import/no-named-as-default-member': 'off',
'import/no-empty-named-blocks': 'off',
'import/no-mutable-exports': 'off',
'import/no-amd': 'off',
'import/default': 'off',
'import/export': 'off',
'import/exports-last': 'off',
'import/namespace': 'off',
'import/no-absolute-path': 'off',
'import/no-dynamic-require': 'off',
'import/no-webpack-loader-syntax': 'off',
'import/prefer-default-export': 'off',
'import/unambiguous': 'off',
'import/no-relative-parent-imports': 'off',
'import/no-self-import': 'off',
'import/consistent-type-specifier-style': 'off',
'import/first': 'off',
'import/group-exports': 'off',
'import/max-dependencies': 'off',
'import/named': 'off',
'import/no-duplicates': 'off',
'import/no-namespace': 'off',
'import/no-nodejs-modules': 'off',
'import/extensions': 'off',
'import/no-unassigned-import': 'off',
'import/no-named-default': 'off',
'import/no-named-export': 'off',
'import/no-default-export': 'off',
'import/no-anonymous-default-export': 'off',
'import/no-commonjs': 'off',
'import/no-cycle': 'off',
};