forked from dawnlabs/alchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
22 lines (22 loc) · 670 Bytes
/
Copy path.eslintrc
File metadata and controls
22 lines (22 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "airbnb",
"installedESLint": true,
"rules": {
"no-var": 0,
"func-names": 0,
"space-before-function-paren": 0,
"comma-dangle": 0,
"semi": ["error", "never"],
"no-unexpected-multiline": 1,
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"max-len": 0,
"react/prop-types": 0,
"arrow-body-style": 0,
"no-use-before-define": ["error", { "functions": false, "classes": true }],
"no-multi-spaces": ["error", { "exceptions": { "VariableDeclarator": true } }],
"curly": 0,
"no-nested-ternary": 0,
"no-unused-vars": 2,
"no-shadow": 0,
}
}