1 Star 0 Fork 0

Ysll/vue-fiu-ui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
NayoAyo 提交于 2018-01-05 16:55 . update
// http://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module'
},
env: {
browser: true
},
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
extends: 'standard',
// required to lint *.vue files
plugins: [
'html'
],
// add your custom rules here
'rules': {
'arrow-parens': 0, // allow paren-less arrow functions
'quotes': [2, 'single'],
'brace-style': [2, '1tbs', {'allowSingleLine': true}], // 强制使用一致的缩进 第二个参数为 "tab" 时,会使用tab,
'no-mixed-spaces-and-tabs': [2, false], // 不允许空格和 tab 混合缩进
'semi': [2, 'always'], // 语句强制分号结尾
'generator-star-spacing': 0, // allow async-await
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, // allow debugger during development
'indent': ['off', 'tab'],
'no-tabs': 'off',
'no-trailing-spaces': 'off'
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/umr10032/vue-fiu-ui.git
git@gitee.com:umr10032/vue-fiu-ui.git
umr10032
vue-fiu-ui
vue-fiu-ui
master

搜索帮助