mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
06d9a373f2
* update deps * Update package.json * update deps and workflows * refactor workflows * always checkout * Update action.yml * Update action.yml * Update action.yml * bump * Update action.yml * Update action.yml * update workflow * fix pnpm issues * upgrade eslint * complete workflows * Update eslint.config.ts * upgrade tailwind * Update .gitignore * upgrade nuxt content separately
35 lines
701 B
TypeScript
35 lines
701 B
TypeScript
import pluginVue from 'eslint-plugin-vue'
|
|
import {
|
|
defineConfigWithVueTs,
|
|
vueTsConfigs,
|
|
} from '@vue/eslint-config-typescript'
|
|
import pluginVitest from '@vitest/eslint-plugin'
|
|
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/**',
|
|
'docs/**',
|
|
'.nuxt',
|
|
],
|
|
},
|
|
|
|
pluginVue.configs['flat/essential'],
|
|
vueTsConfigs.recommended,
|
|
|
|
{
|
|
...pluginVitest.configs.recommended,
|
|
files: ['tests/**/*'],
|
|
},
|
|
skipFormatting,
|
|
)
|