forked from 19h47/19h47.fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
38 lines (38 loc) · 1.01 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
module.exports = {
root: true,
env: {
node: true,
browser: true,
},
extends: [
'standard',
'airbnb-base',
],
rules: {
'arrow-parens': ['error', 'as-needed'],
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? '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',
},
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module',
allowImportExportEverywhere: true
},
settings: {
'import/resolver': {
'webpack': {
'config': 'config/webpack.common.js'
},
}
},
};