加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
无痕 提交于 2021-03-05 01:09 . ++
/*
* @Description: eslint配置
* @Author: 无痕
* @Email: 350801869@qq.com
* @Date: 2020-07-08 14:04:19
* @LastEditTime: 2021-03-04 23:27:22
* @LastEditors: 无痕
*/
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
},
env: {
node: true,
},
globals: {
wx: true,
weex: true,
uni: true,
plus: true,
getApp: true,
getCurrentPages: true,
},
extends: ['plugin:vue/recommended', 'eslint:recommended', 'prettier', 'prettier/vue'],
rules: {
// 不强制驼峰法命名
camelcase: 0,
// 可以不使用全等
eqeqeq: 0,
// 如果一个变量不会被重新赋值,最好使用const进行声明
'prefer-const': [
'error',
{
destructuring: 'any',
ignoreReadBeforeAssign: false,
},
],
// 允许使用console
'no-console': 0,
// 允许直接return;
'no-useless-return': 0,
// 禁止使用debugger
'no-debugger': 0,
'prefer-promise-reject-errors': 0,
'standard/no-callback-literal': 0,
'no-tabs': 0,
'no-unused-expressions': 0,
'no-mixed-operators': 0,
'import/no-webpack-loader-syntax': 0,
'no-useless-escape': 0,
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化