-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport.js
56 lines (50 loc) · 1.53 KB
/
import.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"use strict";
module.exports = {
parserOptions: {
sourceType: "module",
},
plugins: [
"import",
],
rules: {
"import/no-unresolved": "warn",
"import/named": "warn",
"import/default": "warn",
"import/namespace": "warn",
"import/no-restricted-paths": "off",
"import/no-absolute-path": "off",
"import/no-dynamic-require": "off",
"import/no-internal-modules": "off",
"import/no-webpack-loader-syntax": "warn",
"import/export": "warn",
"import/no-named-as-default": "warn",
"import/no-named-as-default-member": "warn",
"import/no-deprecated": "warn",
"import/no-extraneous-dependencies": "error",
"import/no-mutable-exports": "warn",
"import/unambiguous": "off",
"import/no-commonjs": "warn",
"import/no-amd": "warn",
"import/no-nodejs-modules": "off",
"import/first": "warn",
"import/no-duplicates": "warn",
"import/no-namespace": "off",
"import/extensions": ["warn", "always", { js: "never", "jsx": "never", "mjs": "never" }],
"import/order": "warn",
"import/newline-after-import": "warn",
"import/prefer-default-export": "off",
"import/max-dependencies": "off",
"import/no-unassigned-import": "warn",
"import/no-named-default": "warn",
"import/no-anonymous-default-export": "off",
"import/dynamic-import-chunkname": "warn",
"import/exports-last": "off",
"import/group-exports": "off",
"import/no-cycle": "off",
"import/no-default-export": "off",
"import/no-self-import": "error",
"import/no-useless-path-segments": "warn",
// deprecated
"import/imports-first": "off",
},
};