1 Star 0 Fork 0

qinfendeyuyu/3d-earth

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 722 Bytes
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
"plugins": ['@typescript-eslint'],
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
rules: {
eqeqeq: 0, // 必须使用全等
'no-unused-vars': 1, // 不能有声明后未被使用的变量或参数
'no-throw-literal': 0, // 0可以/2不可以 抛出字面量错误 throw "error";
'no-sparse-arrays': 2, // 数组中不允许出现空位置
'no-empty': 0, // 禁止出现空语句块
'no-console': ['error', { allow: ['warn', 'error', 'info', "log"] }],
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-useless-escape': 0,
"@typescript-eslint/no-explicit-any": "off",
"no-async-promise-executor": 0
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yangqingming/3d-earth.git
git@gitee.com:yangqingming/3d-earth.git
yangqingming
3d-earth
3d-earth
main

搜索帮助