1 Star 0 Fork 0

秦豪杰/nest-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
秦豪杰 提交于 2023-03-25 17:07 . feat: 🎉 完成
module.exports = {
root: true,
env: {
node: true
},
extends: [
'plugin:vue/vue3-essential',
'@vue/standard',
'@vue/typescript/recommended'
],
parserOptions: {
sourceType: 'module',
ecmaFeatures: {
jsx: true,
tsx: true
},
ecmaVersion: 2020
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/semi': [2, 'never'],
'@typescript-eslint/no-unused-vars': 0,
'symbol-description': 0,
semi: 0,
'array-bracket-spacing': [2, 'never'],
// 数组和对象键值对最后一个逗号, never参数:不能带末尾的逗号, always参数:必须带末尾的逗号,
// always-multiline:多行模式必须带逗号,单行模式不能带逗号
// 'comma-dangle': [2, 'never'],
// 文件末尾强制换行
'eol-last': 2,
// vue 组件名 包含多个单词
'vue/multi-word-component-names': 0,
quotes: [1, 'single'],
eqeqeq: [2, 'allow-null'],
indent: [2, 2, {
SwitchCase: 1
}]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/LuckyCatHao/nest-admin.git
git@gitee.com:LuckyCatHao/nest-admin.git
LuckyCatHao
nest-admin
nest-admin
main

搜索帮助