加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
林鹏 提交于 2022-03-18 17:35 . WMap v1.0.0
module.exports = {
root: true,
globals: {
// 忽略全局变量报警
document: true,
},
env: {
browser: true,
es2021: true,
},
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module',
},
plugins:['html'],
rules: {
'no-new': 'off',
'prefer-regex-literals': 'off',
'prefer-promise-reject-errors': 'off',
'no-unused-vars': ['warn', { caughtErrors: 'none' }], // 未使用变量
'no-tabs': 'off', // 忽略 tab 和 空格的区别
'no-trailing-spaces': 'off', // 忽略多余换行空格
'no-mixed-spaces-and-tabs': 'off',
'space-before-function-paren': ['off', 'always'],
'no-unreachable-loop': 'off', // 遍历未使用变量
'no-multiple-empty-lines': 'off', // 两行之间的间隔
'no-loss-of-precision': 'off', // 数字精度提示
'no-useless-escape': 0, // 正则表达式忽略特殊字符
semi: ['warn', 'never'],
eqeqeq: 0, // 忽略非全等
indent: ['off', 2], // 缩进
quotes: ['error', 'single', { allowTemplateLiterals: true }]
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化