1 Star 0 Fork 14

zjzcn/iot-parent-front

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
Mrx 提交于 2024-10-10 17:38 . 初次提交
module.exports = {
root: true,
env: {
node: true
},
extends: [
// vue文件支持
'plugin:vue/vue3-essential',
// vue组件规则支持
'plugin:vue/vue3-recommended',
// vue推荐规则
'@vue/standard',
// typescript规则支持
'@vue/typescript/recommended',
'./.eslintrc-auto-import.json'
],
overrides: [
],
globals: {
Global: true
},
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module'
},
rules: {
// https://eslint.vuejs.org/rules/
// 此规则旨在强制在模板中每行强制实施一定数量的属性
'vue/max-attributes-per-line': ['error', { singleline: { max: 4 }, multiline: { max: 3 } }],
// 此规则在单行元素的内容之前和之后强制使用换行符
'vue/singleline-html-element-content-newline': ['off'],
// 要求组件名称始终为多字
'vue/multi-word-component-names': 'off',
// 要求属性有默认值
'vue/require-default-prop': 'off',
// https://typescript-eslint.io/rules/
// 禁止any类型
'@typescript-eslint/no-explicit-any': 'off',
// https://nodejs.cn/eslint/rules
// 禁止使用异步函数作为 Promise 执行器
'no-async-promise-executor': 'off',
// 禁止 case 子句中的词法声明
'no-case-declarations': 'off',
// 不允许使用debugger
'no-debugger': 'off'
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zjzcn/iot-parent-front.git
git@gitee.com:zjzcn/iot-parent-front.git
zjzcn
iot-parent-front
iot-parent-front
master

搜索帮助