1 Star 1 Fork 0

江夏/blog-home

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
江夏 提交于 2022-05-23 18:21 . eslint更改规则
// "off" 或者 0:关闭规则。
// "warn" 或者 1:打开规则,并且作为一个警告(不影响exit code)。
// "error" 或者 2:打开规则,并且作为一个错误(exit code将会是1)。
module.exports = {
root: true,
env: {
browser: true,
node: true,
es6: true
},
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser'
},
plugins: ['prettier'],
extends: [
'plugin:vue/vue3-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'eslint:recommended'
],
// The Follow configs works with eslint-plugin-vue v7.x.x
globals: {
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly'
},
// add your custom rules here
// it is base on https://github.com/vuejs/eslint-config-vue
rules: {
'prettier/prettier': 'error',
'vue/multi-word-component-names': [
0,
{
ignores: []
}
],
'no-unused-vars': 0,
'@typescript-eslint/no-unused-vars': [0],
'@typescript-eslint/no-explicit-any': [0] // any类型
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jiang-xia/blog-home.git
git@gitee.com:jiang-xia/blog-home.git
jiang-xia
blog-home
blog-home
master

搜索帮助