31 lines
806 B
TypeScript
31 lines
806 B
TypeScript
import { globalIgnores } from 'eslint/config'
|
|
import { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript'
|
|
import pluginVue from 'eslint-plugin-vue'
|
|
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default defineConfigWithVueTs(
|
|
{
|
|
name: 'app/files-to-lint',
|
|
files: ['**/*.{vue,ts,mts,tsx}'],
|
|
},
|
|
|
|
globalIgnores(['**/dist/**', '**/dist-ssr/**', '**/coverage/**']),
|
|
|
|
...pluginVue.configs['flat/essential'],
|
|
vueTsConfigs.recommended,
|
|
{
|
|
rules: {
|
|
indent: ['error', 4, { SwitchCase: 1 }],
|
|
'vue/html-indent': ['error', 4],
|
|
'vue/script-indent': ['error', 4, { baseIndent: 1, switchCase: 1 }],
|
|
'vue/block-lang': 'off',
|
|
},
|
|
},
|
|
|
|
skipFormatting,
|
|
)
|