59 lines
1.3 KiB
JavaScript
59 lines
1.3 KiB
JavaScript
require('@rushstack/eslint-patch/modern-module-resolution')
|
|
|
|
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'vue-global-api',
|
|
'eslint:recommended',
|
|
'plugin:vue/vue3-recommended',
|
|
'@vue/typescript/recommended',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
parser: 'vue-eslint-parser',
|
|
parserOptions: {
|
|
parser: {
|
|
js: 'espree',
|
|
ts: '@typescript-eslint/parser',
|
|
'<template>': 'espree',
|
|
},
|
|
sourceType: 'module',
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
tsx: true,
|
|
},
|
|
},
|
|
rules: {
|
|
'no-undef': 'off',
|
|
'no-console': 'off',
|
|
'no-debugger': 'off',
|
|
'prettier/prettier': 'warn',
|
|
'prefer-template': 'error',
|
|
'vue/no-reserved-component-names': 'off',
|
|
'@typescript-eslint/no-this-alias': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-var-requires': 'off',
|
|
'@typescript-eslint/no-empty-function': 'off',
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
'vue/no-v-html': 'off',
|
|
'vue/html-self-closing': [
|
|
'error',
|
|
{
|
|
html: {
|
|
void: 'any',
|
|
normal: 'any',
|
|
component: 'always',
|
|
},
|
|
svg: 'always',
|
|
math: 'always',
|
|
},
|
|
],
|
|
// 多字组件名称
|
|
'vue/multi-word-component-names': 'off',
|
|
// Vue属性排序
|
|
'vue/attributes-order': 'warn',
|
|
},
|
|
}
|