-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy path.eslintrc.cjs
43 lines (43 loc) · 911 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
42
43
module.exports = {
root: true,
env: {
node: true,
mocha: true
},
extends: [
'plugin:vue-libs/recommended',
'plugin:prettier/recommended',
'plugin:markdown/recommended',
'prettier'
],
plugins: ['@typescript-eslint'],
parserOptions: {
ecmaVersion: 2020,
parser: 'espree'
},
rules: {
'object-shorthand': 'error',
'no-debugger': 'error',
'vue/multi-word-component-names': 'off'
},
overrides: [
{
files: ['*.ts'],
extends: ['plugin:@typescript-eslint/recommended'],
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser'
},
rules: {
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/consistent-type-imports': 'error'
}
},
{
files: ['**/*.md/*.*'],
rules: {
'prettier/prettier': 'off'
}
}
]
}