-
Notifications
You must be signed in to change notification settings - Fork 26
/
.eslintrc.json
95 lines (95 loc) · 3.86 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
{
"env": {
"browser": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaFeatures": {
"impliedStrict": true
}
},
"globals": {
"ajaxurl": false,
"Promise": false,
"jQuery": false,
"_": false,
"Chart": false,
"swal": false,
"imagify": true,
"imagifyAdminBar": true,
"imagifyBulk": true,
"ImagifyGulp": false,
"imagifyLibrary": true,
"imagifyNotices": true,
"imagifyOptions": true,
"imagifyPricingModal": true,
"imagifySwal": true,
"imagifyTTT": true,
"imagifyFiles": true
},
"rules": {
"consistent-this": "error",
"curly": [ "error", "all" ],
"dot-notation": [ "error", { "allowKeywords": true } ],
"eol-last": "error",
"eqeqeq": "error",
"for-direction": "error",
"indent": [ "error", "tab", { "SwitchCase": 1 } ],
"key-spacing": [ "error", {
"align": {
"beforeColon": false,
"afterColon": true,
"on": "value",
"mode": "minimum"
},
"multiLine": {
"beforeColon": false,
"afterColon": true
}
} ],
"keyword-spacing": "error",
"linebreak-style": [ "error", "unix" ],
"new-cap": "error",
"new-parens": "error",
"no-alert": "error",
"no-array-constructor": "error",
"no-caller": "error",
"no-catch-shadow": "error",
"no-eval": "error",
"no-extend-native": "error",
"no-extra-bind": "error",
"no-extra-parens": [ "error", "functions" ],
"no-implied-eval": "error",
"no-iterator": "error",
"no-label-var": "error",
"no-labels": "error",
"no-lone-blocks": "error",
"no-loop-func": "error",
"no-multi-str": "error",
"no-native-reassign": "error",
"no-new": "error",
"no-new-func": "error",
"no-new-object": "error",
"no-new-wrappers": "error",
"no-octal-escape": "error",
"no-process-exit": "error",
"no-proto": "error",
"no-return-assign": "error",
"no-script-url": "error",
"no-sequences": "error",
"no-shadow": [ "error", { "builtinGlobals": true, "allow": [ "$this", "name" ] } ],
"no-shadow-restricted-names": "error",
"no-spaced-func": "error",
"no-trailing-spaces": "error",
"no-undef-init": "error",
"no-underscore-dangle": "error",
"no-unused-expressions": "error",
"no-use-before-define": "error",
"no-with": "error",
"semi": "error",
"semi-spacing": [ "error", { "before": false, "after": true } ],
"space-infix-ops": "error",
"space-unary-ops": [ 2, { "words": true, "nonwords": true, "overrides": { "++": false, "--": false, "-": false } } ],
"strict": [ "error", "function" ]
}
}