-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
51 lines (51 loc) · 1.15 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
module.exports = {
'env': {
'browser': true,
'amd': true,
'node': true,
},
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended',
'plugin:tailwindcss/recommended',
'eslint:recommended',
],
plugins: [
'@typescript-eslint',
],
rules: {
quotes: ['error', 'single'],
'comma-dangle': ['error', 'always-multiline'],
'semi': ['error', 'never'],
'eol-last': ['error', 'always'],
'vue/multi-word-component-names': 0,
'vue/first-attribute-linebreak': 0,
'vue/max-attributes-per-line': 0,
'@typescript-eslint/ban-ts-comment': 0,
'object-curly-spacing': ['error', 'always'],
'tailwindcss/no-custom-classname': 0,
'vue/html-closing-bracket-spacing': [
'error', {
'startTag': 'never',
'endTag': 'never',
'selfClosingTag': 'never',
}],
},
settings: {
'import/resolver': 'vite',
},
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 'latest',
sourceType: 'module',
},
overrides: [
{
files: ['*.ts', '*.vue'],
rules: {
'no-undef': 'off',
},
},
],
}