forked from Backbase/bb-lp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
43 lines (42 loc) · 972 Bytes
/
.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
---
rules:
eqeqeq: 0
curly: 2
no-mixed-spaces-and-tabs: 1
no-unused-vars: 1
no-shadow: 1
space-unary-ops: 1
key-spacing: 1
semi: 1
handle-callback-err: 1
no-multi-spaces: 1
curly: 1
no-extra-boolean-cast: 1
no-trailing-spaces: 1
comma-spacing: 1
no-use-before-define: 1
no-unused-expressions: 1
no-unused-expressions: 1
eol-last: 1
no-spaced-func: 1
new-cap: 1
no-extend-native: 1
space-infix-ops: 1
no-redeclare: 1
camelcase: 1
no-extra-bind: 1
no-return-assign: 1
no-extra-strict: 1
consistent-return: 1
dot-notation: 1
no-undef: 1
no-underscore-dangle: 1
quotes:
- 1
- "single"
env:
node: true
es6: true
mocha: true
ecmaFeatures:
modules: true