-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheslint.config.mjs
More file actions
67 lines (61 loc) · 1.93 KB
/
Copy patheslint.config.mjs
File metadata and controls
67 lines (61 loc) · 1.93 KB
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
import eslint from '@eslint/js';
import vuePlugin from 'eslint-plugin-vue';
import tseslint from 'typescript-eslint';
import vueParser from 'vue-eslint-parser';
import {fileURLToPath} from 'node:url';
const DIRNAME = fileURLToPath(new URL('.', import.meta.url));
export default tseslint.config(
{ignores: ['**/dist/**', '**/node_modules/**']},
// --- Base JS + TS ---
eslint.configs.recommended,
tseslint.configs.recommendedTypeChecked,
// --- TS / JS files ---
{
files: ['**/*.{ts,tsx,js,mjs,cjs}'],
languageOptions: {
parserOptions: {
projectService: {
allowDefaultProject: ["*.mjs"]
},
tsconfigRootDir: DIRNAME
}
},
rules: {
// TS tweaks
'@typescript-eslint/consistent-type-imports': [
'warn',
{prefer: 'type-imports', fixStyle: 'inline-type-imports'}
],
'@typescript-eslint/no-unused-vars': ['warn', {argsIgnorePattern: '^_'}],
'@typescript-eslint/require-await': 'off'
}
},
// --- Vue SFC files ---
{
files: ['**/*.vue'],
languageOptions: {
parser: vueParser,
parserOptions: {
parser: tseslint.parser,
projectService: true,
tsconfigRootDir: DIRNAME,
extraFileExtensions: ['.vue']
}
},
plugins: {
vue: vuePlugin
},
rules: {
...vuePlugin.configs['vue3-recommended'].rules,
// Vue style tweaks
'vue/html-self-closing': [
'warn',
{
html: {void: 'always', normal: 'never', component: 'always'}
}
],
'vue/attributes-order': 'warn',
'vue/component-name-in-template-casing': ['warn', 'PascalCase']
}
}
);