-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
50 lines (49 loc) · 1.37 KB
/
.eslintrc.js
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
47
48
49
50
const rules = {
"arrow-parens": ["error", "as-needed"],
"no-console": "off",
"no-debugger": "production" === process.env.NODE_ENV ? "error" : "off",
"no-tabs": 0,
indent: ["error", "tab", { SwitchCase: 1, ignoredNodes: ["TemplateLiteral"] }],
"template-curly-spacing": ["off"],
"no-param-reassign": ["error", { props: false }],
yoda: [2, "always"],
"import/no-named-as-default": 0,
// Weird rule that is triggered on every function with name 'callback' or 'cb'
// Added: https://github.com/standard/eslint-plugin-standard/issues/12
// Maybe someday it will be removed: https://github.com/standard/eslint-plugin-standard/issues/27
"standard/no-callback-literal": "off",
"import/no-anonymous-default-export": [
"error",
{
allowArray: false,
allowArrowFunction: false,
allowAnonymousClass: false,
allowAnonymousFunction: false,
allowCallExpression: true, // The true value here is for backward compatibility
allowLiteral: false,
allowObject: false,
},
],
};
module.exports = {
root: true,
env: {
node: true,
browser: true,
},
extends: ["airbnb-base", "prettier"],
rules,
parser: "@babel/eslint-parser",
parserOptions: {
sourceType: "module",
allowImportExportEverywhere: true,
requireConfigFile: false,
},
settings: {
"import/resolver": {
webpack: {
config: require.resolve("./config/webpack.config.common.js"),
},
},
},
};