forked from intlify/eslint-plugin-vue-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
80 lines (78 loc) · 1.7 KB
/
.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
'use strict'
module.exports = {
root: true,
env: {
node: true,
mocha: true
},
extends: [
'plugin:vue/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',
'prefer-template': 'error',
'no-restricted-properties': [
'error',
{
object: 'context',
property: 'getSourceCode',
message: 'Use lib/utils/compat.ts'
},
{
object: 'context',
property: 'getFilename',
message: 'Use lib/utils/compat.ts'
},
{
object: 'context',
property: 'getPhysicalFilename',
message: 'Use lib/utils/compat.ts'
},
{
object: 'context',
property: 'getCwd',
message: 'Use lib/utils/compat.ts'
},
{
object: 'context',
property: 'getScope',
message: 'Use lib/utils/compat.ts'
},
{
object: 'context',
property: 'parserServices',
message: 'Use lib/utils/compat.ts'
}
]
},
overrides: [
{
files: ['*.ts', '*.mts'],
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'
}
}
]
}