25 lines
505 B
JavaScript
25 lines
505 B
JavaScript
![]() |
import { defineConfig, globalIgnores } from 'eslint/config'
|
||
|
import globals from 'globals'
|
||
|
import js from '@eslint/js'
|
||
|
import pluginVue from 'eslint-plugin-vue'
|
||
|
|
||
|
export default defineConfig([
|
||
|
{
|
||
|
name: 'app/files-to-lint',
|
||
|
files: ['**/*.{js,mjs,jsx,vue}'],
|
||
|
},
|
||
|
|
||
|
globalIgnores(['**/dist/**', '**/dist-ssr/**', '**/coverage/**']),
|
||
|
|
||
|
{
|
||
|
languageOptions: {
|
||
|
globals: {
|
||
|
...globals.browser,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
|
||
|
js.configs.recommended,
|
||
|
...pluginVue.configs['flat/essential'],
|
||
|
])
|