1 Star 0 Fork 0

yuanzx/m82

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 3.08 KB
一键复制 编辑 原始数据 按行查看 历史
yuanzx 提交于 2023-10-03 20:29 . init
/* eslint-disable @typescript-eslint/no-var-requires */
const { defineConfig } = require('eslint-define-config')
module.exports = defineConfig({
parser: 'vue-eslint-parser',
env: {
browser: true,
node: true
},
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended',
'@vue/eslint-config-typescript/recommended',
'@vue/eslint-config-prettier',
'plugin:@typescript-eslint/recommended'
],
parserOptions: {
ecmaVersion: 12,
parser: '@typescript-eslint/parser'
},
plugins: ['vue', '@typescript-eslint', 'import'],
rules: {
// vue base
'vue/no-unused-vars': [
'error',
{
ignorePattern: '^_'
}
],
'vue/valid-attribute-name': 0,
'vue/singleline-html-element-content-newline': 'off',
'vue/multiline-html-element-content-newline': 'off',
// 'vue/name-property-casing': ['error', 'PascalCase'],
'vue/no-v-html': 'off',
'vue/html-closing-bracket-newline': 'off',
'vue/html-self-closing': [
'error',
{
html: {
void: 'always', // "always" 需要在没有内容的元素上自动关闭
normal: 'always',
component: 'always' // Vue.js 自定义组件的样式
},
svg: 'always',
math: 'always'
}
],
'vue/html-indent': 0,
'vue/max-attributes-per-line': 0,
'vue/custom-event-name-casing': 0,
'vue/eqeqeq': [2, 'always', { null: 'ignore' }],
'vue/multi-word-component-names': 0,
'vue/v-on-event-hyphenation': 0,
'vue/first-attribute-linebreak': 0,
'vue/no-reserved-props': 0,
// common
'no-unused-vars': 0,
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
semi: [2, 'never'],
'jsx-quotes': 0,
'semi-spacing': [
2,
{
before: false,
after: true
}
],
quotes: [
2,
'single',
{
avoidEscape: true,
allowTemplateLiterals: true
}
],
'comma-dangle': [2, 'never'],
'comma-spacing': [
2,
{
before: false,
after: true
}
],
'comma-style': [2, 'last'],
'arrow-parens': [2, 'as-needed'],
'arrow-spacing': [
2,
{
before: true,
after: true
}
],
'no-async-promise-executor': 0,
'space-before-function-paren': 0,
'no-empty': 0,
'spaced-comment': ['error', 'always'],
'no-undef': 0,
// import
'import/order': [
'error',
{
pathGroups: [
{
pattern: '@/**',
group: 'external',
position: 'after'
}
],
pathGroupsExcludedImportTypes: ['builtin']
}
],
'import/first': 2,
// typescript
'@typescript-eslint/no-explicit-any': 0,
// 防止<script setup>使用的变量<template>被标记为未使用
'vue/script-setup-uses-vars': 2,
'@typescript-eslint/no-unused-vars': ['error', { varsIgnorePattern: 'props' }],
'@typescript-eslint/consistent-type-imports': [2, { disallowTypeAnnotations: false }]
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yzxazj/m82.git
git@gitee.com:yzxazj/m82.git
yzxazj
m82
m82
master

搜索帮助