2 Star 1 Fork 2

mochat / sidebar

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 2.03 KB
一键复制 编辑 原始数据 按行查看 历史
maxincai 提交于 2021-01-18 22:50 . 正式发布
module.exports = {
root: true,
env: {
node: true,
browser: true,
es6: true
},
extends: [
'plugin:vue/vue3-essential',
'@vue/standard'
],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
indent: ['error', 2, { SwitchCase: 1 }],
'vue/html-indent': ['error', 2, {
attribute: 1,
baseIndent: 1,
closeBracket: 0,
alignAttributesVertically: true,
ignores: []
}],
'vue/html-quotes': ['error', 'double'],
'vue/no-dupe-keys': ['error', {
groups: []
}],
'vue/no-duplicate-attributes': ['error', {
allowCoexistClass: true,
allowCoexistStyle: true
}],
"vue/mustache-interpolation-spacing": ["error", "always"],
'vue/return-in-computed-property': ['error', {
treatUndefinedAsUnspecified: true
}],
'generator-star-spacing': 'off',
'no-mixed-operators': 1,
'vue/max-attributes-per-line': [
2,
{
singleline: 5,
multiline: {
max: 1,
allowFirstLine: false
}
}
],
'vue/attribute-hyphenation': 0,
'vue/html-self-closing': 0,
'vue/component-name-in-template-casing': 0,
'vue/html-closing-bracket-spacing': 0,
'vue/singleline-html-element-content-newline': 0,
'vue/no-unused-components': 0,
'vue/multiline-html-element-content-newline': 0,
'vue/no-use-v-if-with-v-for': 0,
'vue/html-closing-bracket-newline': 0,
'vue/no-parsing-error': 0,
'no-tabs': 0,
"vue/no-multi-spaces": [1, {
"ignoreProperties": false
}],
quotes: [
2,
'single',
{
avoidEscape: true,
allowTemplateLiterals: true
}
],
semi: [
2,
'never',
{
beforeStatementContinuationChars: 'never'
}
],
'no-delete-var': 2,
'prefer-const': [
2,
{
ignoreReadBeforeAssign: false
}
],
'template-curly-spacing': 'off',
eqeqeq: 'off'
}
}
1
https://gitee.com/mochat/sidebar.git
git@gitee.com:mochat/sidebar.git
mochat
sidebar
sidebar
master

搜索帮助