3 Star 0 Fork 0

beans/mannage

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.cjs 5.45 KB
一键复制 编辑 原始数据 按行查看 历史
beans 提交于 2022-09-25 21:12 . first
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
extends: ['plugin:vue/vue3-essential', 'google'],
overrides: [],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: ['vue'],
rules: {
// 不能使用var
'no-var': 'error',
// 关闭声明但未使用的变量的报错
'no-unused-vars': 'off',
// 要求使用 isNaN() 检查 NaN
'use-isnan': 'error',
// 强制数组方法的回调函数中有 return 语句
'array-callback-return': 'error',
// 要求 switch 语句中有 default 分支
'default-case': 'error',
// 强制在任何允许的时候使用点号
'dot-notation': 'error',
// 要求使用 === 和 !==
'eqeqeq': 'error',
// 禁用 alert、confirm 和 prompt
'no-alert': 'error',
// 禁止 if 语句中有 return 之后有 else
'no-else-return': 'error',
// 禁用 eval()
'no-eval': 'error',
// 禁止使用多个空格
'no-multi-spaces': 'error',
// 禁止使用 var 多次声明同一变量
'no-redeclare': 'error',
// 禁止在 return 语句中使用赋值语句
'no-return-assign': 'error',
// 禁止出现未使用过的表达式
'no-unused-expressions': 'error',
// 禁止不必要的 .call() 和 .apply()
'no-useless-call': 'error',
// 禁用未声明的变量,除非它们在 /global / 注释中被提到
'no-undef': 'off',
// 不允许在变量定义之前使用它们
'no-use-before-define': 'error',
// 强制在逗号前后使用一致的空格
'comma-spacing': 'error',
// 强制数组方括号中使用一致的空格
'array-bracket-spacing': 'error',
// 强制在单行代码块中使用一致的空格
'block-spacing': 'error',
// 强制在代码块中使用一致的大括号风格
'brace-style': 'error',
// 强制文件末尾至少保留一行空行
'eol-last': 'error',
// 强制使用一致的缩进
'indent': ['error', 2],
// 强制在对象字面量的属性中键和值之间使用一致的间距
'key-spacing': 'error',
// 强制在关键字前后使用一致的空格
'keyword-spacing': 'error',
// 要求构造函数首字母大写
'new-cap': 'off',
// 要求方法链中每个调用都有一个换行符
'newline-per-chained-call': 'error',
// 不允许多个空行
'no-multiple-empty-lines': 'error',
// 禁用行尾空格
'no-trailing-spaces': 'error',
// 强制在花括号中使用一致的空格
'object-curly-spacing': ['error', 'always'],
// 强制分号之前和之后使用一致的空格
'semi-spacing': 'error',
// 强制在块之前使用一致的空格
'space-before-blocks': 'error',
// 强制在圆括号内使用一致的空格
'space-in-parens': ['error', 'never'],
// 要求操作符周围有空格
'space-infix-ops': 'error',
// 强制在注释中 // 或 /* 使用一致的空格
'spaced-comment': 'error',
// js中必须使用单引号
'quotes': ['error', 'single'],
// vue部分
// vue组件标签不能为一个单词
'vue/multi-word-component-names': 'off',
// vue在watch中不能用箭头函数
'vue/no-arrow-functions-in-watch': 'error',
// vue在computed中不能用async/await
'vue/no-async-in-computed-properties': 'error',
// vue不能使用一样的key
'vue/no-dupe-keys': 'error',
// vue子组件不能改变父组件的属性
'vue/no-mutating-props': 'error',
// vue不能使用自带的属性/方法
'vue/no-reserved-keys': 'error',
// vue的data必须是一个函数
'vue/no-shared-component-data': 'error',
// vue的computed不能有副作用
'vue/no-side-effects-in-computed-properties': 'error',
// vue中template不能使用key
'vue/no-template-key': 'error',
// vue中不能调用computed
'vue/no-use-computed-property-like-method': 'error',
// vue中不能和v-for一起使用v-if
'vue/no-use-v-if-with-v-for': 'error',
// vue中不能给template添加无用属性
'vue/no-useless-template-attributes': 'error',
// vue中props中的属性必须有类型
'vue/require-prop-type-constructor': 'error',
// vue中v-for必须有key
'vue/require-v-for-key': 'error',
// vue中computed必须有返回值
'vue/return-in-computed-property': 'error',
// vue中不能使用无效的nextTick
'vue/valid-next-tick': 'error',
// vue标签换行
'vue/singleline-html-element-content-newline': 'off',
// vue属性顺序
'vue/attributes-order': 'off',
// vue方法顺序
'vue/order-in-components': 'off',
// v-html
'vue/no-v-html': 'off',
// template中不止可以有一个标签
'vue/valid-template-root': 'off',
// template中的缩进
'vue/html-indent': ['error', 2],
// template中的引号
'vue/html-quotes': ['error', 'double', { avoidEscape: false }],
// 插值表达式
'vue/mustache-interpolation-spacing': ['error', 'always'],
// template中的空格
'vue/no-multi-spaces': [
'error',
{
ignoreProperties: false,
},
],
'vue/no-v-text-v-html-on-component': 'off',
// 换行符
'linebreak-style': [2, 'unix'],
// 取消jsdoc注释
'require-jsdoc': 'off',
// 正常for..in..
'guard-for-in': 'off',
// 限制每行代码的字数
'max-len': 'off',
'no-unused-expressions': 'off',
// 解决 crlf报错问题
'linebreak-style': [0, 'error', 'window'],
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/huangrimian/mannage.git
git@gitee.com:huangrimian/mannage.git
huangrimian
mannage
mannage
master

搜索帮助