4 Star 1 Fork 0

Bear/shirshi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 976 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiong0827 提交于 2022-11-16 23:22 . feat(order):订单模块完成
module.exports = {
//
root: true,
env: {
node: true,
browser: true
},
//解析选项
parserOptions: {
ecmaVersion: 6, //es版本语法
sourceType: 'module' //es模块化的选择 module 或者 require
// ecmaFeatures:{
// jsx:true //如果是react项目,就需要开启jsx语法
// }
},
//具体检查规则
rules: {
//off 0 关闭规则
//warn 1 开启规则
//error 2 开启规则使用错误级的提示
semi: 0, //禁止使用分号
"array-callback-return": 'warn', //数组方法要有返回值
eqeqeq: 0,
'no-unused-vars': ["off", { "varsIgnorePattern": "[iI]gnored" }]
// "no-var": 2
},
//继承其他规则
// extends: [
// "eslint:recommended"
// ],
//不检查的文件
eslintIgnore: [
"dist/*",
"node_modules/*",
"build/*",
"*.md",
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/little-bearying/shirshi.git
git@gitee.com:little-bearying/shirshi.git
little-bearying
shirshi
shirshi
relase

搜索帮助