-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.yml
102 lines (95 loc) · 2.14 KB
/
base.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
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
extends: eslint:recommended
rules:
# POSSIBLE ERRORS
for-direction: error
getter-return: error
no-empty:
- error
- allowEmptyCatch: true
no-inner-declarations:
- error
- both
valid-typeof:
- error
- requireStringLiterals: true
# BEST PRACTICES
accessor-pairs: error
array-callback-return: error
curly: error
default-case: error
dot-location:
- error
- property
dot-notation:
- error
- allowKeywords: false
eqeqeq:
- error
- smart
guard-for-in: error
no-alert: error
no-caller: error
no-empty-function: error
no-eval: error
no-extend-native: error
no-extra-bind: error
no-extra-label: error
no-floating-decimal: error
no-implicit-coercion:
- error
- boolean: false
no-implicit-globals: error
no-implied-eval: error
no-invalid-this: error
no-iterator: error
no-labels: error
no-lone-blocks: error
no-loop-func: error
no-multi-spaces: error
no-multi-str: error
no-new: error
no-new-func: error
no-new-wrappers: error
no-octal-escape: error
no-param-reassign:
- error
- props: true
no-proto: error
no-return-assign: error
no-script-url: error
no-self-assign:
- error
- props: true
no-self-compare: error
no-sequences: error
no-throw-literal: error
no-unmodified-loop-condition: error
no-unused-expressions:
- error
- allowTernary: true
allowShortCircuit: true
no-useless-call: error
no-useless-concat: error
no-useless-return: error
no-with: error
radix: error
vars-on-top: error
wrap-iife:
- error
- inside
- functionPrototypeMethods: true
yoda: error
# VARIABLES
no-catch-shadow: error
no-label-var: error
no-shadow-restricted-names: error
no-undef-init: error
no-undefined: error
no-unused-vars:
- error
- vars: local
args: all
no-use-before-define:
- error
- classes: false
variables: false