You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
637 B
35 lines
637 B
|
12 months ago
|
import js from '@eslint/js'
|
||
|
|
import pluginVue from 'eslint-plugin-vue'
|
||
|
|
import globals from 'globals'
|
||
|
|
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
|
||
|
|
|
||
|
|
export default [
|
||
|
|
{
|
||
|
|
name: 'app/files-to-lint',
|
||
|
|
files: ['**/*.{js,mjs,jsx,vue}'],
|
||
|
|
},
|
||
|
|
|
||
|
|
{
|
||
|
|
name: 'app/files-to-ignore',
|
||
|
|
ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'],
|
||
|
|
},
|
||
|
|
|
||
|
|
{
|
||
|
|
languageOptions: {
|
||
|
|
globals: {
|
||
|
|
...globals.browser,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
|
||
|
|
js.configs.recommended,
|
||
|
|
...pluginVue.configs['flat/essential'],
|
||
|
|
skipFormatting,
|
||
|
|
|
||
|
|
{
|
||
|
|
rules: {
|
||
|
|
'vue/multi-word-component-names': 'off',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
]
|