加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
泷酥 提交于 2021-04-18 16:03 . 第一次提交
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint'
},
env: {
browser: true,
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
'plugin:vue/essential',
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
'standard'
],
// required to lint *.vue files
plugins: [
'vue'
],
// add your custom rules here
rules: {
"no-undef": 0, //不允许未声明的变量
"no-unused-vars": [0, {"vars": "all", "args": "after-used"}], //不允许有声明后未使用的变量或者参数
"no-tabs": 0, //不允许tabs
"no-trailing-spaces": 0,
"padded-blocks": 0,
"no-control-regex": 0,
// allow async-await
'generator-star-spacing': 'off',
"indent": [0, 2],//缩进风格
// "camelcase": [0, {"properties": "never"}], //强制驼峰命名规则
"space-before-function-paren": [0, {"anonymous": "always", "named": "never"}], //函数定义时括号前的空格
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化