25 lines
666 B
TypeScript
25 lines
666 B
TypeScript
import pluginVue from 'eslint-plugin-vue'
|
|
import {defineConfigWithVueTs, vueTsConfigs} from '@vue/eslint-config-typescript'
|
|
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
|
|
|
|
export default defineConfigWithVueTs(
|
|
{
|
|
name: 'app/files-to-lint',
|
|
files: ['**/*.{ts,mts,tsx,vue}'],
|
|
},
|
|
|
|
{
|
|
name: 'app/files-to-ignore',
|
|
ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'],
|
|
},
|
|
pluginVue.configs['flat/essential'],
|
|
vueTsConfigs.recommended,
|
|
skipFormatting,
|
|
{
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'space-before-function-paren': 'off',
|
|
semi: ['warn', 'always'],
|
|
},
|
|
},
|
|
);
|