forked from up-for-grabs/up-for-grabs.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
32 lines (32 loc) · 868 Bytes
/
.eslintrc.json
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
{
"extends": "airbnb-base",
"rules": {
"space-before-function-paren": "off",
"comma-dangle": ["error", "only-multiline"],
"quotes": ["error", "single"],
"no-undef": "off",
"vars-on-top": "off",
"no-var": "off",
"prefer-template": "off",
"func-names": "off",
"prefer-arrow-callback": "off",
"one-var": "off",
"operator-linebreak": "off",
"eqeqeq": "off",
"camelcase": "off",
"no-param-reassign": "off",
"newline-per-chained-call": "off",
"max-len": "off",
"no-underscore-dangle": "off",
"no-return-assign": "off",
"no-useless-escape": "off",
"wrap-iife": "off",
"object-shorthand": "off",
"no-restricted-globals": "off",
"space-infix-ops": "off",
"no-use-before-define": "off",
"no-plusplus": "off",
"consistent-return": "off",
"import/no-amd": "off"
}
}