forked from agenda/agenda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
40 lines (37 loc) · 896 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
env:
node: true
rules:
brace-style: [2, "1tbs"]
comma-style: [2, "last"]
default-case: 2
guard-for-in: 2
no-floating-decimal: 2
no-nested-ternary: 2
no-multi-spaces: 0
no-underscore-dangle: 0
no-shadow: 0
no-use-before-define: [1, "nofunc"]
new-cap: 0
radix: 2
quotes: 0
space-before-function-paren: [2, "never"]
keyword-spacing: [2, { "after": true }]
spaced-comment: [2, "always", { exceptions: ["-"]}]
strict: [2, "never"]
valid-jsdoc: [1, { prefer: { "return": "returns"}}]
wrap-iife: 2
comma-dangle: 0
no-mixed-requires: [0, false]
globals:
"describe": true
"it": true
"before": true
"after": true
"beforeEach": true
"afterEach": true
"requireModel": true
"expect": true
"failOnError": true
"assertObjectEquals": true
"testHelpers": true
"sinon": true