1 Star 0 Fork 1

小邓同学/springboot-file-vue

forked from hi/springboot-file-vue 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 2.41 KB
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint'
},
env: {
browser: true,
},
extends: ['plugin:vue/essential'],
plugins: [
'vue'
],
//ESLint规则: "off"或者0,不启用这个规则,"warn"或者1,出现问题会有警告,"error"或者2,出现问题会报错
rules: {
// allow debugger during development
//'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
'semi': 2, //语句完后使用分号
//"quotes": [1, 'single'],//使用单引号
"quotes": 0,
"no-debugger": 2, //不允许出现debugger语句
"no-dupe-args": 2, //函数定义的时候不允许出现重复的参数
"no-dupe-keys": 2, //对象中不允许出现重复的键
"no-duplicate-case": 2, //switch语句中不允许出现重复的case标签
"no-empty": 2, //不允许出现空的代码块
"no-irregular-whitespace": 2, //不允许出现不规则的空格
"no-unreachable": 0, //在return,throw,continue,break语句后不允许出现不可能到达的语句
"eqeqeq": ["error", "smart"], //比较的时候使用严格等于
"no-alert": 1, //不允许使用alert,confirm,prompt语句
"no-labels": ["error", {
"allowLoop": false,
"allowSwitch": false
}], //不允许标签语句
"no-proto": 2, //不允许使用__proto__属性
"no-redeclare": 2, //不允许变量重复声明
"no-script-url": 2, //不允许使用javascript:void(0)
"no-throw-literal": 2, //不允许抛出字面量错误 throw "error"
"no-label-var": 2, //不允许标签和变量同名
"no-undef-init": 2, //不允许初始化变量时给变量赋值undefined
"no-undefined": 2, //不允许把undefined当做标识符使用
"indent": ["off", 2], //强制一致的缩进风格
"camelcase": [2, { "properties": "never" }], //强制驼峰命名规则
"consistent-this": [0, "self"], //当获取当前环境的this是用一样的风格
"new-cap": [2, { "newIsCap": true, "capIsNew": false }], //构造函数名字首字母要大写
"newline-after-var": 0, //变量声明后必须空一行
"no-mixed-spaces-and-tabs": [2, "smart-tabs"], //不允许混用tab和空格
"no-multiple-empty-lines": [2, { "max": 2 }], //空行最多不能超过两行
"no-trailing-spaces": 2, //一行最后不允许有空格
"no-var": 0, //使用let和const代替var
"no-plusplus": 0 //不允许使用++ --运算符
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/david-deng-01/springboot-file-vue.git
git@gitee.com:david-deng-01/springboot-file-vue.git
david-deng-01
springboot-file-vue
springboot-file-vue
master

搜索帮助