forked from ronami/minipack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
34 lines (34 loc) · 843 Bytes
/
.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
{
"extends": ["airbnb-base", "prettier"],
"plugins": [
"prettier"
],
"rules": {
"arrow-body-style": "off",
"consistent-return": "off",
"class-methods-use-this": "off",
"global-require": "off",
"import/extensions": "off",
"import/no-dynamic-require": "off",
"import/prefer-default-export": "off",
"no-confusing-arrow": "off",
"no-console": "off",
"no-loop-func": "off",
"no-multi-assign": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-restricted-syntax": "off",
"no-return-assign": "off",
"no-underscore-dangle": "off",
"no-unused-expressions": "off",
"no-use-before-define": "off",
"prettier/prettier": [
"error",
{
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all"
}
]
}
}