-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path.eslintrc.js
74 lines (65 loc) · 1.49 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
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
const path = require('path')
module.exports = {
'globals': {
'document': false,
'navigator': false,
'window': false,
'unsafeWindow': false,
'GM': false,
'GM_getValue': true,
'GM_setValue': true,
'GM_registerMenuCommand': true,
'GM_xmlhttpRequest': true,
},
'extends': [
'@noe132/eslint-config-vue',
],
'env': {
'es6': true,
'node': true,
'browser': true,
},
'root': true,
'settings': {
'import/resolver': {
'typescript': path.join(__dirname, 'tsconfig.json'),
},
},
'overrides': [
{
'files': [
'*.ts',
'*.tsx',
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
},
'rules': {
'vue/component-definition-name-casing': 'off',
'vue/multi-word-component-names': 'off',
'vue/one-component-per-file': 'off',
'vue/require-default-prop': 'off',
'@typescript-eslint/no-unused-vars': ['off', {
'varsIgnorePattern': '^h$',
}],
},
},
{
'files': [
'*.vue',
'*.tsx',
],
'rules': {
'vue/component-definition-name-casing': 'off',
'vue/multi-word-component-names': 'off',
'vue/valid-v-model': 'off',
'vue/valid-v-for': 'off',
'vue/no-template-key': 'off',
'vue/no-v-for-template-key': 'off',
'vue/require-v-for-key': 'off',
'vue/require-default-prop': 'off',
},
},
],
}