-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
36 lines (35 loc) · 1.03 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
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
},
env: {
browser: true,
},
extends: ['airbnb-base'],
// check if imports actually resolve
settings: {
'import/resolver': {
webpack: {
config: 'build/webpack.base.conf.cjs',
},
},
},
// add your custom rules here
rules: {
// allow optionalDependencies
'import/no-extraneous-dependencies': ['error', {
optionalDependencies: ['test/index.js'],
}],
// allow debugger during development
'no-debugger': 'error',
// custom spaces rules
indent: 'off',
'indent-legacy': ['error', 4, { SwitchCase: 1 }],
'linebreak-style': 0,
'max-len': ['error', 120, { ignoreComments: true }],
'vue/no-template-key': 'off',
'object-curly-newline': ['error', { consistent: true }],
},
};