-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
91 lines (88 loc) · 1.3 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
extends:
airbnb
env:
es6: true
node: true
mocha: true
browser: true
jquery: true
parserOptions:
sourceType: module
ecmaVersion: 2017
rules:
quotes:
- error
- single
- avoid-escape
comma-style:
- off
- first
comma-dangle:
- off
- never
no-empty:
- error
- allowEmptyCatch: true
no-use-before-define:
- off
- nofunc
one-var:
- off
- var: always
let: always
const: always
eqeqeq:
- warn
- smart
no-unused-vars:
- error
no-param-reassign:
- off
no-cond-assign:
- error
- except-parens
arrow-parens:
- off
- as-needed
class-methods-use-this:
- off
object-curly-spacing:
- off
padded-blocks:
- off
no-underscore-dangle:
- off
space-infix-ops:
- off
no-restricted-syntax:
- off
no-throw-literal:
- off
no-console:
- off
operator-assignment:
- off
one-var-declaration-per-line:
- off
no-continue:
- off
no-shadow:
- off
func-names:
- off
no-prototype-builtins:
- off
space-before-function-paren:
- off
import/prefer-default-export:
- off
import/newline-after-import:
- off
import/no-dynamic-require:
- off
no-unused-expressions:
- off
global-require:
- off
no-await-in-loop:
- off