3 Star 27 Fork 11

windmoon/vite-vue3-temptale

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
chaojiangc 提交于 2022-02-23 15:55 . 新增form表单组件 头部菜单
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module'
},
env: {
browser: true,
node: true,
es6: true,
},
extends: [
//'plugin:vue/recommended',
'plugin:vue/vue3-essential',
'@vue/standard',
'./.eslintrc-common.js'],
globals: {
ht: true
},
// add your custom rules here
//it is base on https://github.com/vuejs/eslint-config-vue
rules: {
"vue/max-attributes-per-line": [2, {
"singleline": 10,
"multiline": {
"max": 1,
"allowFirstLine": false
}
}],
"no-undef": "off",
"vue/singleline-html-element-content-newline": "off",
"vue/multiline-html-element-content-newline":"off",
"vue/name-property-casing": ["error", "PascalCase"],
"vue/no-v-html": "off",
'accessor-pairs': 2,
'arrow-spacing': [2, {
'before': true,
'after': true
}],
'block-spacing': [2, 'always'],
'brace-style': [2, '1tbs', {
'allowSingleLine': true
}]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wccy/vite-vue3-temptale.git
git@gitee.com:wccy/vite-vue3-temptale.git
wccy
vite-vue3-temptale
vite-vue3-temptale
master

搜索帮助