Initial commit

This commit is contained in:
2025-06-26 11:28:55 +08:00
commit e11c59cdc2
167 changed files with 6029 additions and 0 deletions

17
eslint.config.mjs Normal file
View File

@@ -0,0 +1,17 @@
import eslintConfig from '@electron-toolkit/eslint-config'
import eslintConfigPrettier from '@electron-toolkit/eslint-config-prettier'
import eslintPluginVue from 'eslint-plugin-vue'
export default [
{ ignores: ['**/node_modules', '**/dist', '**/out'] },
eslintConfig,
...eslintPluginVue.configs['flat/recommended'],
{
files: ['**/*.{js,jsx,vue}'],
rules: {
'vue/require-default-prop': 'off',
'vue/multi-word-component-names': 'off'
}
},
eslintConfigPrettier
]