feat: scaffold Vue 3 + TypeScript frontend with lint and typecheck tooling
This commit is contained in:
parent
c6a737db96
commit
b354b0be76
18 changed files with 3124 additions and 0 deletions
14
frontend/eslint.config.ts
Normal file
14
frontend/eslint.config.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import pluginVue from 'eslint-plugin-vue'
|
||||
import { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript'
|
||||
import prettierConfig from '@vue/eslint-config-prettier'
|
||||
|
||||
export default defineConfigWithVueTs(
|
||||
pluginVue.configs['flat/essential'],
|
||||
vueTsConfigs.recommended,
|
||||
prettierConfig,
|
||||
{
|
||||
rules: {
|
||||
'@typescript-eslint/no-explicit-any': 'error',
|
||||
},
|
||||
},
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue