-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.mjs
40 lines (39 loc) · 1.12 KB
/
eslint.config.mjs
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
import globals from 'globals'
import pluginJs from '@eslint/js'
import tseslint from 'typescript-eslint'
import pluginVue from 'eslint-plugin-vue'
// import { } from '@nuxt/eslint-config/flat'
import eslintConfigPrettier from 'eslint-config-prettier'
/** @type {import('eslint').Linter.Config[]} */
export default [
{ name: 'glob files', files: ['**/*.{js,mjs,cjs,ts,vue}'] },
{ name: 'global ignores', ignores: ['.nuxt/', '.output/', 'dist/'] },
{
name: 'globals',
languageOptions: { globals: { ...globals.browser, ...globals.node } },
},
{
name: '@eslint/js',
files: ['**/*.{js,mjs,cjs,ts}'],
...pluginJs.configs.recommended,
},
...tseslint.configs.recommended,
...pluginVue.configs['flat/essential'],
{
name: "!vue",
rules: {
"vue/multi-word-component-names": "off"
}
},
{
name: "vue-parser",
files: ['**/*.vue'],
languageOptions: {
parserOptions: { parser: tseslint.parser }
},
},
{
name: 'eslint-config-prettier',
...eslintConfigPrettier,
},
]