-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
.eslintrc
64 lines (61 loc) · 858 Bytes
/
.eslintrc
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
{
"root": true,
"extends": "@ljharb",
"rules": {
"func-style": "off",
"no-magic-numbers": "off",
},
"overrides": [
{
"files": "bin.js",
"extends": "@ljharb/eslint-config/node/0.4",
"rules": {
"func-style": "off",
},
},
{
"files": [
"hash.js",
"sha.js",
"sha1.js",
"sha224.js",
"sha256.js",
"sha384.js",
"sha512.js",
"test/vectors.js",
],
"rules": {
"no-underscore-dangle": "off",
},
},
{
"files": [
"sha.js",
"sha1.js",
"sha224.js",
],
"rules": {
"max-params": "off",
},
},
{
"files": [
"sha256.js",
"sha512.js",
],
"rules": {
"max-statements": "off",
},
},
{
"files": [
"sha512.js",
],
"rules": {
"new-cap": "warn",
"max-lines": "off",
"max-lines-per-function": "off",
},
},
],
}