forked from Samourai-Wallet/samourai-dojo
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.eslintrc.json
121 lines (119 loc) · 2.81 KB
/
.eslintrc.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"env": {
"node": true,
"es2021": true,
"mocha": true
},
"plugins": [
"import",
"unicorn"
],
"extends": [
"eslint:recommended",
"plugin:import/recommended",
"plugin:unicorn/recommended"
],
"ignorePatterns": ["*.min.js"],
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
},
"rules": {
"array-callback-return": [
"error",
{
"checkForEach": true
}
],
"complexity": "error",
"no-constructor-return": "error",
"no-self-compare": "error",
"no-template-curly-in-string": "warn",
"no-unmodified-loop-condition": "warn",
"no-unreachable-loop": "error",
"require-atomic-updates": "error",
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
],
"max-len": [
"warn",
160
],
"eol-last": "error",
"eqeqeq": [
"error",
"smart"
],
"radix": "error",
"dot-notation": "warn",
"no-array-constructor": "error",
"no-extend-native": "error",
"no-extra-bind": "error",
"no-implicit-coercion": "error",
"no-invalid-this": "error",
"no-iterator": "error",
"no-lonely-if": "error",
"no-loop-func": "error",
"no-multi-assign": "error",
"no-negated-condition": "error",
"no-undef-init": "error",
"no-useless-call": "error",
"no-useless-constructor": "error",
"no-useless-return": "error",
"prefer-arrow-callback": "warn",
"prefer-template": "warn",
"import/no-self-import": "error",
"import/no-cycle": "error",
"import/no-useless-path-segments": "error",
"import/no-deprecated": "warn",
"import/no-extraneous-dependencies": "error",
"import/no-mutable-exports": "error",
"import/first": "error",
"import/no-duplicates": "error",
"import/newline-after-import": "error",
"import/extensions": [
"error",
"ignorePackages"
],
"unicorn/no-null": "off",
"unicorn/no-process-exit": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prevent-abbreviations": "off",
"unicorn/no-array-for-each": "warn",
"unicorn/numeric-separators-style": "off",
"unicorn/require-post-message-target-origin": "off",
"unicorn/no-array-reduce": "off",
"unicorn/prefer-dom-node-dataset": "off",
"unicorn/switch-case-braces": "off"
},
"overrides": [{
"env": {
"browser": true
},
"files": ["./static/**/*.js"],
"globals": {
"QRCode": "readonly",
"conf": "readonly",
"screenScripts": "readonly",
"lib_msg": "readonly",
"lib_auth": "readonly",
"lib_cmn": "readonly",
"lib_api": "readonly",
"lib_fmt": "readonly",
"lib_errors": "readonly"
}
}]
}