-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
40 lines (38 loc) · 1.01 KB
/
eslint.config.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
const {FlatCompat} = require('@eslint/eslintrc');
const js = require('@eslint/js');
const vue = require('eslint-plugin-vue');
const compat = new FlatCompat({
baseDirectory: __dirname, // Specify the base directory
recommendedConfig: js.configs.recommended,
});
module.exports = [
{
languageOptions: {
ecmaVersion: 'latest',
},
linterOptions: {
noInlineConfig: false,
reportUnusedDisableDirectives: true,
},
plugins: {
vue: vue,
},
rules: {
indent: ['error', 2, {SwitchCase: 1}],
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single', {allowTemplateLiterals: true}],
semi: ['error', 'always'],
'no-empty': 'off',
'object-curly-spacing': ['error', 'never'],
'brace-style': ['error', '1tbs', {allowSingleLine: true}],
},
},
...compat.extends('plugin:vue/vue3-essential'),
...compat.extends('eslint:recommended'),
...compat.env({
browser: true,
node: true,
commonjs: true,
es2021: true,
}),
];