forked from CookiesEater/vue-adminlte3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
36 lines (32 loc) · 1.06 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
module.exports = {
extends: ['plugin:vue/recommended', 'airbnb-base'], // Порядок важен
plugins: ['import'],
settings: {
'import/resolver': {
webpack: {
config: 'webpack.common.js',
},
},
},
env: {
browser: true,
jest: true,
},
rules: {
// IDE само тут может помочь с мягкими переносами, да и иногда просто бывают такие длинные строки
'max-len': 'off',
// Во vuex это используется часто
'no-param-reassign': [2, { props: false }],
// Разрешить конструкции типа i++ только в for()
'no-plusplus': [2, { allowForLoopAfterthoughts: true }],
// Непонятно как код смотреть если все атрибуту будут на новой строке
'vue/max-attributes-per-line': [2, {
singleline: 10,
multiline: {
max: 3,
allowFirstLine: true,
},
}],
'import/no-extraneous-dependencies': 'off',
},
};