forked from FirstLegoLeague/launcher
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.yml
52 lines (44 loc) · 951 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
extends:
- standard
globals:
__static: true
parserOptions:
sourceType: module
plugins:
- html
rules:
arrow-parens:
- warn
- as-needed
- requireForBlockBody: false
no-shadow: warn
no-var: warn
object-curly-spacing: [ warn, always ]
prefer-arrow-callback: warn
prefer-const: warn
import/newline-after-import: warn
import/no-absolute-path: warn
import/no-dynamic-require: warn
import/no-extraneous-dependencies: warn
import/no-mutable-exports: warn
import/order:
- warn
- groups:
- [ builtin, external ]
- [ sibling, index ]
- parent
newlines-between: always-and-inside-groups
node/exports-style: [ warn, exports ]
node/no-unsupported-features:
- warn
- ignores:
- modules
node/shebang: warn
promise/catch-or-return:
- warn
- terminationMethod:
- catch
- asCallback
promise/no-callback-in-promise: warn
promise/no-native: warn
promise/no-return-wrap: warn