-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
35 lines (34 loc) · 860 Bytes
/
.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
const plugins = ['@babel'];
module.exports = {
root: true,
env: {
node: true,
browser: true,
},
extends: ['airbnb-base', 'prettier'],
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,
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
},
parser: '@babel/eslint-parser',
parserOptions: {
sourceType: 'module',
allowImportExportEverywhere: true,
},
settings: {
'import/resolver': {
webpack: {
config: 'webpack/webpack.config.common.js',
},
},
},
plugins,
};