7 Star 66 Fork 10

fy / Icarus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 705 Bytes
一键复制 编辑 原始数据 按行查看 历史
fy 提交于 2019-01-20 15:44 . 迁移至nuxt.js;SSR渲染about页面成功
module.exports = {
root: true,
env: {
browser: true,
node: true
},
parserOptions: {
parser: 'babel-eslint'
},
extends: [
'plugin:vue/essential',
'@vue/standard'
],
// required to lint *.vue files
plugins: [
'vue'
],
// add your custom rules here
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// indent 4 spaces
'indent': ['error', 4, { 'SwitchCase': 1 }],
// allow paren-less arrow functions
'arrow-parens': 0,
// allow async-await
'generator-star-spacing': 0
},
'globals': {
'$': true,
'_': true
}
}
Python
1
https://gitee.com/fy0/Icarus.git
git@gitee.com:fy0/Icarus.git
fy0
Icarus
Icarus
master

搜索帮助