加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 2.72 KB
一键复制 编辑 原始数据 按行查看 历史
刘博文 提交于 2022-09-08 10:55 . 自定义组件
module.exports = {
env: {
browser: true,
es2021: true,
'vue/setup-compiler-macros': true
},
globals: {
PROJECT_BUILD_TIME: 'readonly',
AMap: 'readonly',
BMap: 'readonly',
TMap: 'readonly'
},
parser: 'vue-eslint-parser',
parserOptions: {
ecmaVersion: 12,
parser: '@typescript-eslint/parser',
sourceType: 'module'
},
plugins: ['vue', '@typescript-eslint'],
extends: [
'airbnb-base',
'eslint:recommended',
'plugin:vue/vue3-recommended',
'plugin:prettier/recommended',
'@vue/eslint-config-typescript/recommended',
'@vue/eslint-config-prettier',
'@vue/typescript/recommended'
],
rules: {
'no-console': 'off',
'import/extensions': 'off',
'import/no-extraneous-dependencies': 'off',
'no-await-in-loop': 'off',
'no-shadow': 'off',
'no-empty': 'off',
'no-restricted-syntax': 'off',
'@typescript-eslint/no-shadow': 'off',
'import/order': 'off',
'import/no-unresolved': 'off',
'import/prefer-default-export': 'off',
'vue/v-on-event-hyphenation': 'off',
'max-classes-per-file': 'off',
'no-param-reassign': 'off',
'no-return-await': 'off',
'no-plusplus': 'off',
'no-unused-vars': 'off',
'no-use-before-define': 'off',
'guard-for-in': 0,
'vue/multi-word-component-names': [
'error',
{
ignores: ['index']
}
],
'@typescript-eslint/ban-types': [
'error',
{
types: {
'{}': {
message: 'Use object instead',
fixWith: 'object'
}
}
}
],
'@typescript-eslint/no-empty-interface': [
'error',
{
allowSingleExtends: true
}
],
'no-empty-function': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'consistent-return': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-unused-vars': ['warn', { ignoreRestSiblings: true, varsIgnorePattern: '^_' }],
'@typescript-eslint/no-use-before-define': ['error', { classes: true, functions: false, typedefs: false }]
},
overrides: [
{
files: ['*.vue'],
rules: {
'no-undef': 'off'
}
},
{
files: ['*.html'],
rules: {
'vue/comment-directive': 'off'
}
}
]
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化