forked from n1c/vue3-avataaars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
41 lines (40 loc) · 868 Bytes
/
.eslintrc.cjs
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
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution');
module.exports = {
root: true,
extends: [
'plugin:vue/vue3-recommended',
'eslint:recommended',
'@vue/eslint-config-typescript',
'@vue/airbnb',
'@vue/typescript/recommended',
],
plugins: [
'vue',
'@typescript-eslint',
],
parserOptions: {
ecmaVersion: 'latest',
},
rules: {
'import/no-extraneous-dependencies': 'off',
'import/extensions': ['error', 'never'],
'no-plusplus': 'off',
'vue/multi-word-component-names': 'off',
'vue/max-attributes-per-line': [
'error', {
singleline: {
max: 1,
},
multiline: {
max: 1,
},
},
],
},
settings: {
'import/resolver': {
typescript: {}, // this loads <rootdir>/tsconfig.json to eslint
},
},
};