forked from nodatall/step
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
46 lines (46 loc) · 1.21 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
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true,
"mocha": true
},
"rules": {
"space-in-parens": ["error", "always", {
"exceptions": ["{}"]
}],
"padded-blocks": "off",
"semi": ["error", "never"],
"arrow-parens": "off",
"comma-dangle": "off",
"camelcase": "off",
"react/prop-types": "off",
"jsx-quotes": ["error", "prefer-single"],
"react/jsx-curly-spacing": ["error", "always"],
"react/jsx-wrap-multilines": "off",
"jsx-a11y/no-static-element-interactions": "off",
"react/jsx-filename-extension": "off",
"react/jsx-closing-bracket-location": "off",
"one-var-declaration-per-line": "off",
"consistent-return": "off",
"no-restricted-syntax": "off",
"no-else-return": "off",
"space-before-function-paren": "off",
"guard-for-in": "off",
"one-var": "off",
"valid-jsdoc": ["error", {
"requireReturn": true,
"requireReturnType": true,
"requireParamDescription": true,
"requireReturnDescription": true
}],
"linebreak-style": "off",
"import/no-extraneous-dependencies": "off",
"no-underscore-dangle": "off",
"no-unused-vars": ["error", {
"argsIgnorePattern": "^_"
}]
}
}