1 Star 0 Fork 0

安酱/projectStand

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
lishiqin 提交于 2019-03-04 10:12 . up eslint
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint'
},
env: {
browser: true,
es6: true
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// https://eslint.vuejs.org/rules/
'plugin:vue/strongly-recommended',
// https://github.com/standard/standard/blob/master/docs/RULES-zhcn.md
'standard'
],
// required to lint *.vue files
plugins: ['vue'],
// 自定义规则
rules: {
// 允许使用 async-await
'generator-star-spacing': 'off',
// 开发环境允许使用调试 (生产模式禁用)
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// 禁止使用 var
'no-var': 'error',
// 函数名括号前不需要有空格
'space-before-function-paren': 'off',
// 最多出现3个连续空行
'no-multiple-empty-lines': ["error", { "max": 3, "maxBOF": 1}],
// vue
// html属性必须换行
'vue/max-attributes-per-line': 'off',
// 没有内容的元素需要使用闭合标签
'vue/html-self-closing': 'off'
},
// 配置全局变量
globals: {
$: true
}
}
// ? ---------------------------- 忽略检测本段代码 ----------------------------
/* eslint-disable */
// 代码段: {
// }
/* eslint-enable */
// ? ---------------------------- 忽略检测本行代码 ----------------------------
// eslint-disable-line
// ? ---------------------------- 忽略检测下一行代码 ----------------------------
// eslint-disable-next-line
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/anjiang521/projectStand.git
git@gitee.com:anjiang521/projectStand.git
anjiang521
projectStand
projectStand
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385