forked from nikku/node-xsd-schema-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
38 lines (38 loc) · 865 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
{
"rules": {
"indent": [ 2, 2, {
"VariableDeclarator": { "const": 3, "let": 2, "var": 2 },
"FunctionDeclaration": { "parameters": 2 }
} ],
"keyword-spacing": [ 2 ],
"mocha/no-exclusive-tests": 2,
"no-console": 0,
"no-unused-vars": [ 2, { "args": "none" } ],
"no-trailing-spaces": [ 2 ],
"object-curly-spacing": [ 2, "always"],
"semi": [ 2, "always" ],
"space-before-blocks": [ 2, "always"],
"space-before-function-paren": [ 2, "never" ],
"quotes": [ 2, "single" ]
},
"env": {
"browser": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 5
},
"plugins": [
"mocha"
],
"globals": {
"after": true,
"afterEach": true,
"before": true,
"beforeEach": true,
"describe": false,
"expect": false,
"it": false
}
}