2 Star 2 Fork 0

忆少年歌酒丨/vite-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 2.13 KB
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
root: true,
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
sourceType: 'module',
},
extends: [
'plugin:vue/vue3-essential',
'plugin:vue/vue3-recommended',
'eslint:recommended',
'@vue/typescript/recommended',
],
env: {
browser: true,
node: true,
es6: true,
'vue/setup-compiler-macros': true, //vue3 setup
},
rules: {
quotes: ['error', 'single'], //引号配置 double双引号 single单引号 backtick模版字符串
semi: ['error', 'always'], //分号配置 always在语句结尾需要分号 never不允许分号语句的末尾
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, //debugger
'no-sparse-arrays': ['off'], //不允许稀疏数组
'no-prototype-builtins': ['off'], //防止Object.prototype直接从对象调用方法。
'vue/multi-word-component-names': ['off'], //要求组件名称始终为多个单词
'vue/no-v-html': ['off'], //不允许使用v-html 防止XSS攻击
'no-empty-function': ['error', { allow: ['arrowFunctions'] }], //空函数校验
'no-unused-vars': 'off', //去除函数未使用参数报错
'vue/max-attributes-per-line': [
//强制执行每行的最大属性数
'warn',
{
singleline: 5,
multiline: {
max: 1,
},
},
],
'vue/singleline-html-element-content-newline': ['off'], //在单行元素的内容前后需要换行符
'vue/multiline-html-element-content-newline': ['off'], //在多行元素的内容前后需要换行符
//https://eslint.vuejs.org/rules/script-indent.html
'vue/script-indent': [
//缩进
'error',
2,
{
// baseIndent: 1, //The multiplier of indentation for top-level statements.
switchCase: 1, // The multiplier of indentation for case/default clauses.
},
],
//缩进 https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/indent.md
'@typescript-eslint/indent': [2, 2, { SwitchCase: 1 }],
'@typescript-eslint/no-explicit-any': ['off'],//去除使用any类型警告
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/llliwei/vite-template.git
git@gitee.com:llliwei/vite-template.git
llliwei
vite-template
vite-template
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385