-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.cjs
66 lines (64 loc) · 1.65 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
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution');
module.exports = {
root: true,
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript',
//'@vue/eslint-config-prettier'
],
parserOptions: {
ecmaVersion: 'latest',
},
overrides: [
{
files: ['src/' + '**' + '/' + '*.vue', 'src/' + '**' + '/' + '*.ts'],
rules: {
'no-unused-vars': 'off', // warn
'vue/multi-word-component-names': 'off', // warn
'@typescript-eslint/no-unused-vars': 'off',
},
},
],
};
/*
module.exports = {
env: { node: true },
extends: [
'eslint:recommended', // this maybe causes errors in defineEmits<{}>() ???
'plugin:vue/vue3-recommended',
//'plugin:vue/vue3-strongly-recommended ',
'plugin:@typescript-eslint/recommended',
// '@vue/eslint-config-prettier/skip-formatting',
// 'prettier'
],
// globals: {
// defineEmits: 'readonly',
// defineProps: 'readonly',
// },
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaFeatures: {
jsx: false,
},
ecmaVersion: 12,
sourceType: 'module',
},
// plugins: ['@typescript-eslint'], // might not be needed
// rules: {
// '@typescript-eslint/explicit-function-return-type': 'warn',
//},
root: true,
overrides: [
{
files: ['src/'+'**'+'/'+'*.vue', 'src/'+'**'+'/'+'*.js'],
rules: {
'no-unused-vars': 'off', // warn
'vue/multi-word-component-names': 'off', // warn
},
},
],
};
*/