forked from HackYourFuture/JavaScript2
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy path.eslintrc.json
More file actions
25 lines (25 loc) · 603 Bytes
/
.eslintrc.json
File metadata and controls
25 lines (25 loc) · 603 Bytes
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
{
"extends": ["airbnb", "prettier"],
"plugins": ["prettier"],
"env": {
"browser": true,
"jest": true
},
"rules": {
"prettier/prettier": ["error"],
"strict": "off",
"func-names": "off",
"import/no-dynamic-require": "off",
"no-console": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-restricted-syntax": "off",
"object-shorthand": "off",
"operator-assignment": "off",
"prefer-arrow-callback": "off",
"prefer-destructuring": "off",
"prefer-template": "off",
"trailing-comma": "off",
"linebreak-style": "off"
}
}