-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.eslintrc
117 lines (116 loc) · 3.47 KB
/
.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
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
{
"env": {
"es6": true,
"node": true,
"browser": true,
"jasmine": true,
"atomtest": true,
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"globals": {
"atom": "readonly",
},
"rules": {
"no-console": "off",
"no-case-declarations": "off",
"no-cond-assign": "error",
"no-debugger": "error",
"no-dupe-args": "error",
"no-dupe-keys": "error",
"no-duplicate-case": "error",
"no-empty": "error",
"no-ex-assign": "error",
"no-extra-boolean-cast": "error",
"no-func-assign": "error",
"no-var": "error",
"no-irregular-whitespace": "error",
"no-template-curly-in-string": "error",
"valid-jsdoc": "error",
"no-unsafe-negation": "error",
"valid-typeof": ["error", { "requireStringLiterals": true }],
"array-callback-return": "error",
"indent": ["error", 2, { "SwitchCase": 1 }],
"linebreak-style": ["error", "unix"],
"semi": ["error","never"],
"eol-last": ["error", "always"],
"quotes": ["error", "single", { "allowTemplateLiterals": true, "avoidEscape": true }],
"consistent-return": "error",
"curly": "error",
"default-case": "warn",
"dot-location": ["error", "property"],
"eqeqeq": "error",
"no-caller": "error",
"no-else-return": "error",
"no-empty-function": "error",
"no-empty-pattern": "error",
"no-eq-null": "error",
"no-eval": "error",
"no-extend-native": "error",
"no-extra-label": "error",
"no-extra-bind": "error",
"no-fallthrough": "error",
"no-global-assign": "error",
"no-implicit-globals": "error",
"no-implied-eval": "error",
"no-invalid-this": "error",
"no-lone-blocks": "error",
"no-multi-spaces": "error",
"no-multi-str": "error",
"no-new-func": "error",
"no-new": "error",
"no-param-reassign": "warn",
"no-redeclare": "error",
"no-return-assign": "error",
"no-self-assign": "error",
"no-self-compare": "error",
"no-sequences": "error",
"no-throw-literal": "error",
"no-unused-expressions": "error",
"no-useless-call": "error",
"no-useless-concat": "error",
"no-useless-escape": "error",
"no-useless-return": "error",
"no-with": "error",
"yoda": "error",
"init-declarations": ["error", "always"],
"no-catch-shadow": "error",
"no-delete-var": "error",
"no-label-var": "error",
"no-shadow-restricted-names": "error",
"no-shadow": "error",
"no-undef-init": "error",
"no-undef": "error",
"no-unused-vars": "error",
"array-bracket-spacing": ["error", "never"],
"block-spacing": "error",
"brace-style": "error",
"camelcase": "error",
"arrow-body-style": ["error", "as-needed"],
"arrow-parens": ["error", "as-needed"],
"no-class-assign": "error",
"no-const-assign": "error",
"no-duplicate-imports": "error",
"no-dupe-class-members": "error",
"no-new-symbol": "error",
"no-this-before-super": "error",
"no-useless-computed-key": "error",
"no-useless-constructor": "error",
"object-shorthand": ["error", "always"],
"prefer-arrow-callback": "error",
"prefer-const": "error",
"prefer-rest-params": "error",
"prefer-spread": "error",
"prefer-template": "error",
"symbol-description": "error",
"no-void": "warn",
"no-unmodified-loop-condition": "warn",
"no-new-wrappers": "warn",
"no-loop-func": "warn",
"no-labels": "warn",
"no-implicit-coercion": "warn"
}
}