-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc
50 lines (47 loc) · 1.39 KB
/
.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
44
45
46
47
48
49
50
{
"extends": ["standard", "standard-react"],
"globals": {
"Modernizr": true,
"jQuery": true,
"$": true,
"SiteInfo": true,
"localStorage": true,
"grunticon": true
},
"rules": {
"semi": "off",
"no-tabs": "off",
"indent": "off",
"comma-dangle": "off",
"no-mixed-spaces-and-tabs": "off",
"no-multiple-empty-lines": "off",
"space-before-blocks": "off",
"space-before-function-paren": "off",
"spaced-comment": "off",
"padded-blocks": "off",
"keyword-spacing": "off",
"space-in-parens": "off",
"no-unused-vars": "warn",
"eol-last": "warn",
"one-var": "off",
"block-spacing": "off",
"no-multi-spaces": "off",
"no-useless-call": "warn",
"space-unary-ops": "off",
"space-infix-ops": "off",
"operator-linebreak": "off",
"no-unexpected-multiline": "warn",
"quotes": "off",
"brace-style": "off",
"camelcase": "off",
"comma-spacing": "off",
"no-duplicate-imports": "off",
"jsx-quotes": "off",
"standard/object-curly-even-spacing": "off",
"react/jsx-indent": "off",
"react/jsx-indent-props": "off",
"react/jsx-curly-spacing": "off",
"react/prop-types": "warn",
"react/self-closing-comp": "warn"
}
}