Added ui with vote view interface
This commit is contained in:
parent
496b51646e
commit
bce6857b12
30 changed files with 6692 additions and 0 deletions
19
ui/eslint.config.js
Normal file
19
ui/eslint.config.js
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import pluginVue from 'eslint-plugin-vue'
|
||||
import vueTsEslintConfig from '@vue/eslint-config-typescript'
|
||||
import oxlint from 'eslint-plugin-oxlint'
|
||||
|
||||
export default [
|
||||
{
|
||||
name: 'app/files-to-lint',
|
||||
files: ['**/*.{ts,mts,tsx,vue}'],
|
||||
},
|
||||
|
||||
{
|
||||
name: 'app/files-to-ignore',
|
||||
ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'],
|
||||
},
|
||||
|
||||
...pluginVue.configs['flat/essential'],
|
||||
...vueTsEslintConfig(),
|
||||
oxlint.configs['flat/recommended'],
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue