-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.yml
52 lines (48 loc) · 959 Bytes
/
.eslintrc.yml
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
rules:
accessor-pairs: 1
array-callback-return: 2
block-scoped-var: 2
indent: 0
quotes: 0
linebreak-style: [2, "unix"]
semi: 0
no-console: 0
prefer-const: 2
no-irregular-whitespace: 0
globals:
wk: true
task: true
taskProcess: true
run: true
desc: true
namespace: true
complete: true
serie: true
parallel: true
fail: true
ecmaFeatures:
arrowFunctions: true
binaryLiterals: true
blockBindings: true
classes: true
defaultParams: true
destructuring: true
forOf: false
generators: false
modules: true
objectLiteralComputedProperties: false
objectLiteralDuplicateProperties: false
objectLiteralShorthandMethods: true
objectLiteralShorthandProperties: true
octalLiterals: false
regexUFlag: false
regexYFlag: false
restParams: true
spread: true
superInFunctions: true
templateStrings: true
unicodeCodePointEscapes: false
env:
node: true
es6: true
extends: 'eslint:recommended'