forked from vuejs/vuepress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
47 lines (41 loc) · 865 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
36
37
38
39
40
41
42
43
44
45
46
47
module.exports = {
root: true,
extends: [
'plugin:vue-libs/recommended',
'plugin:vue/recommended'
],
rules: {
indent: ['error', 2, { MemberExpression: 'off' }],
'no-undef': ['error'],
'operator-linebreak': ['error', 'before'],
'vue/match-component-file-name': [
'error',
{
extensions: ['js', 'vue'],
shouldMatchCase: false
}
]
},
overrides: [
{
files: ['*.ts'],
extends: [
'plugin:@typescript-eslint/recommended'
],
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser'
},
rules: {
'no-useless-constructor': 'off'
}
},
{
files: [
'**/__tests__/**/*.spec.js',
'**/__tests__/**/*.spec.ts'
],
extends: ['plugin:jest/recommended']
}
]
}