-
Notifications
You must be signed in to change notification settings - Fork 180
/
.eslintrc
39 lines (36 loc) · 824 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:
browser: true
rules:
brace-style: [2, "stroustrup"]
comma-style: [2, "last"]
default-case: 2
guard-for-in: 2
no-console: 0
no-floating-decimal: 2
no-nested-ternary: 2
no-undef: 2
no-underscore-dangle: 0
quotes: [2, "double"]
radix: 2
space-after-keywords: [2, "always"]
indent: [2, 2, {"SwitchCase": 1}]
space-before-blocks: 2
space-before-function-paren: [2, { "anonymous": "always", "named": "never" }]
spaced-comment: [2, "always", {exceptions: ["-"]}]
wrap-iife: 2
globals:
process: true
require: true
module: true
sinon: true
console: true
expect: true
describe: true
it: true
afterEach: true
beforeEach: true
__dirname: true
Buffer: true
Git: true
jQuery: true,
global: true