2 Star 1 Fork 0

youseeseeyouonedayday/uni-app-base

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 978 Bytes
一键复制 编辑 原始数据 按行查看 历史
caoqing 提交于 2022-04-15 10:10 . :building_construction: 初始化项目
const isProd = process.env.NODE_ENV === 'production'
module.exports = {
root: true,
env: { node: true },
// https://github.com/vuejs/vue-eslint-parser#parseroptionsparser
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: ['@typescript-eslint', 'prettier'],
extends: [
'plugin:@typescript-eslint/recommended',
// https://github.com/vuejs/eslint-plugin-vue/blob/44ff0e02cd0fd08b8cd7dee0127dbb5590446323/docs/user-guide/README.md#conflict-with-prettier
'plugin:vue/vue3-recommended',
'plugin:prettier/recommended',
],
rules: {
'no-console': isProd ? 'warn' : 'off',
'no-debugger': isProd ? 'warn' : 'off',
'vue/multi-word-component-names': 'off',
'no-undef': ['off', { uni: true }],
},
globals: {
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/youseeseeyouonedayday/uni-app-base.git
git@gitee.com:youseeseeyouonedayday/uni-app-base.git
youseeseeyouonedayday
uni-app-base
uni-app-base
master

搜索帮助