mirror of
https://github.com/yangjian102621/geekai.git
synced 2026-09-17 10:47:15 +00:00
d4fd38ab7e
- 同步 Plus v4.3.1 功能源并移除商业 License 闭环 - 更新开源镜像命名、Docker 部署版本和 geekai 数据库配置 - 补充前端 ESLint 检查配置并修复存量解析与模板问题 - 保留 JWT、管理员权限、API Key 和 OAuth 等正常鉴权机制
30 lines
635 B
JavaScript
30 lines
635 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
es2022: true,
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:vue/vue3-essential',
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
},
|
|
globals: {
|
|
defineProps: 'readonly',
|
|
defineEmits: 'readonly',
|
|
defineExpose: 'readonly',
|
|
withDefaults: 'readonly',
|
|
},
|
|
rules: {
|
|
'vue/multi-word-component-names': 'off',
|
|
'vue/no-mutating-props': 'off',
|
|
'vue/require-valid-default-prop': 'off',
|
|
'vue/no-dupe-keys': 'off',
|
|
'vue/no-side-effects-in-computed-properties': 'off',
|
|
'vue/no-textarea-mustache': 'off',
|
|
},
|
|
}
|