forked from FirstLegoLeague/tournament
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yml
40 lines (35 loc) · 844 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
extends: standard
parserOptions:
sourceType: script
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
strict: [ warn, global ]
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
node/shebang: warn
promise/catch-or-return: warn
promise/no-callback-in-promise: warn
promise/no-native: warn
promise/no-return-wrap: warn