1 Star 3 Fork 0

justorez/peppa

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.cjs 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
justorez 提交于 2024-02-12 21:04 . feat: base features
module.exports = {
root: true,
env: {
browser: true,
es2020: true
},
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 'latest',
sourceType: 'module'
},
plugins: ['@typescript-eslint', 'vue', 'prettier'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:vue/vue3-recommended', // https://eslint.vuejs.org
'plugin:prettier/recommended'
],
rules: {
'prettier/prettier': 'warn',
'no-unref': 'off',
'no-undef': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'vue/html-indent': ['warn', 4],
'vue/multi-word-component-names': 'off',
'vue/singleline-html-element-content-newline': 'off',
'vue/html-self-closing': [
'warn',
{
html: {
void: 'always',
normal: 'never'
}
}
]
},
ignorePatterns: [
'dist',
'node_modules',
'tmp',
'*.d.ts',
'*.{md,json,yaml,yml}'
],
overrides: []
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/justorez/peppa.git
git@gitee.com:justorez/peppa.git
justorez
peppa
peppa
main

搜索帮助