26 lines
722 B
TypeScript
26 lines
722 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',
|
|
'object-curly-spacing': ['error', 'always'],
|
|
semi: ['warn', 'always'],
|
|
},
|
|
},
|
|
);
|