mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
添加eslint
This commit is contained in:
parent
2e4508dde7
commit
d474df7371
109
.eslintrc.cjs
Normal file
109
.eslintrc.cjs
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
module.exports = {
|
||||||
|
root: true,
|
||||||
|
env: {
|
||||||
|
browser: true,
|
||||||
|
node: true,
|
||||||
|
},
|
||||||
|
extends: [
|
||||||
|
'eslint-config-prettier',
|
||||||
|
'eslint:recommended',
|
||||||
|
'plugin:@typescript-eslint/recommended',
|
||||||
|
'plugin:vue/vue3-recommended',
|
||||||
|
'plugin:vue/vue3-essential',
|
||||||
|
'plugin:prettier/recommended',
|
||||||
|
],
|
||||||
|
parser: 'vue-eslint-parser',
|
||||||
|
parserOptions: {
|
||||||
|
ecmaVersion: 2020,
|
||||||
|
sourceType: 'module',
|
||||||
|
parser: '@typescript-eslint/parser',
|
||||||
|
ecmaFeatures: {
|
||||||
|
jsx: true,
|
||||||
|
tsx: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
plugins: ['vue', 'react'],
|
||||||
|
globals: {
|
||||||
|
defineProps: 'readonly',
|
||||||
|
defineEmits: 'readonly',
|
||||||
|
defineExpose: 'readonly',
|
||||||
|
withDefaults: 'readonly',
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
'@typescript-eslint/no-explicit-any': 'error',
|
||||||
|
'prettier/prettier': 'error',
|
||||||
|
'no-unused-vars': 'off',
|
||||||
|
'@typescript-eslint/no-unused-vars': 'off',
|
||||||
|
'@typescript-eslint/ban-types': 'error',
|
||||||
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
||||||
|
'@typescript-eslint/no-var-requires': 'off',
|
||||||
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
||||||
|
'@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
|
||||||
|
'@typescript-eslint/consistent-type-imports': [
|
||||||
|
'error',
|
||||||
|
{ disallowTypeAnnotations: false },
|
||||||
|
], // 强制导入类型显示标注 `import type xxx from 'xxx'`
|
||||||
|
'accessor-pairs': 2, // 强制同时存在 `get` 与 `set`
|
||||||
|
'constructor-super': 0, // 强制子类构造函数中使用 `super` 调用父类的构造函数
|
||||||
|
curly: [2, 'all'], // `if`、`else` 强制使用 `{}` 包裹
|
||||||
|
'default-case': 2, // `switch` 中强制含有 `default`
|
||||||
|
eqeqeq: [2, 'allow-null'], // 强制使用严格判断 `===`
|
||||||
|
'no-alert': 0, // 禁止使用 `alert`、`confirm`
|
||||||
|
'no-array-constructor': 2, // 禁止使用数组构造器
|
||||||
|
'no-bitwise': 0, // 禁止使用按位运算符
|
||||||
|
'no-caller': 1, // 禁止使用 `arguments.caller`、`arguments.callee`
|
||||||
|
'no-catch-shadow': 2, // 禁止 `catch` 子句参数与外部作用域变量同名
|
||||||
|
'no-class-assign': 2, // 禁止给类赋值
|
||||||
|
'no-cond-assign': 2, // 禁止在条件表达式中使用赋值语句
|
||||||
|
'no-const-assign': 2, // 禁止修改 `const` 声明的变量
|
||||||
|
'no-constant-condition': 2, // 禁止在条件中使用常量表达式 `if(true)`、`if(1)`
|
||||||
|
'no-dupe-keys': 2, // 在创建对象字面量时不允许 `key` 重复
|
||||||
|
'no-dupe-args': 2, // 函数参数不能重复
|
||||||
|
'no-duplicate-case': 2, // `switch` 中的 `case` 标签不能重复
|
||||||
|
'no-eval': 1, // 禁止使用 `eval`
|
||||||
|
'no-ex-assign': 2, // 禁止给 `catch` 语句中的异常参数赋值
|
||||||
|
'no-extend-native': 2, // 禁止扩展 `native` 对象
|
||||||
|
'no-extra-bind': 2, // 禁止不必要的函数绑定
|
||||||
|
'no-extra-boolean-cast': 2, // 禁止不必要的 `bool` 转换
|
||||||
|
'no-extra-parens': 2, // 禁止非必要的括号
|
||||||
|
'no-extra-semi': 2, // 禁止多余的冒号
|
||||||
|
'no-fallthrough': 1, // 禁止 `switch` 穿透
|
||||||
|
'no-func-assign': 2, // 禁止重复的函数声明
|
||||||
|
'no-implicit-coercion': 1, // 禁止隐式转换
|
||||||
|
'no-implied-eval': 2, // 禁止使用隐式 `eval`
|
||||||
|
'no-invalid-regexp': 2, // 禁止无效的正则表达式
|
||||||
|
'no-invalid-this': 2, // 禁止无效的 `this`
|
||||||
|
'no-irregular-whitespace': 2, // 禁止含有不合法空格
|
||||||
|
'no-iterator': 2, // 禁止使用 `__iterator__ ` 属性
|
||||||
|
'no-label-var': 2, // `label` 名不能与 `var` 声明的变量名相同
|
||||||
|
'no-labels': 2, // 禁止标签声明
|
||||||
|
'no-lone-blocks': 2, // 禁止不必要的嵌套块
|
||||||
|
'no-multi-spaces': 1, // 禁止使用多余的空格
|
||||||
|
'no-multiple-empty-lines': [1, { max: 2 }], // 空行最多不能超过 `2` 行
|
||||||
|
'no-new-func': 1, // 禁止使用 `new Function`
|
||||||
|
'no-new-object': 2, // 禁止使用 `new Object`
|
||||||
|
'no-new-require': 2, // 禁止使用 `new require`
|
||||||
|
'no-sparse-arrays': 2, // 禁止稀疏数组
|
||||||
|
'no-trailing-spaces': 1, // 一行结束后面不要有空格
|
||||||
|
'no-unreachable': 2, // 禁止有无法执行的代码
|
||||||
|
'no-unused-expressions': 2, // 禁止无用的表达式
|
||||||
|
'no-use-before-define': 2, // 禁止定义前使用
|
||||||
|
'no-useless-call': 2, // 禁止不必要的 `call` 和 `apply`
|
||||||
|
'no-var': 'error', // 禁用 `var`
|
||||||
|
'no-with': 2, // 禁用 `with`
|
||||||
|
'vue/multi-word-component-names': [
|
||||||
|
'off',
|
||||||
|
{
|
||||||
|
ignores: [],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
'vue/no-use-v-if-with-v-for': [
|
||||||
|
'error',
|
||||||
|
{
|
||||||
|
allowUsingIterationVar: false,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
'vue/require-v-for-key': ['error'],
|
||||||
|
'vue/require-valid-default-prop': ['error'],
|
||||||
|
},
|
||||||
|
}
|
@ -1,6 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<router-view v-slot="{ Component, route }">
|
<router-view v-slot="{ Component, route }">
|
||||||
<transition name="fade-transform" mode="out-in" appear>
|
<transition
|
||||||
|
:name="transitionPropName"
|
||||||
|
:mode="transitionMode"
|
||||||
|
:appear="transitionAppear"
|
||||||
|
>
|
||||||
<keep-alive include="layout">
|
<keep-alive include="layout">
|
||||||
<component :is="Component" :key="route" />
|
<component :is="Component" :key="route" />
|
||||||
</keep-alive>
|
</keep-alive>
|
||||||
@ -8,6 +12,20 @@
|
|||||||
</router-view>
|
</router-view>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
|
const props = defineProps({
|
||||||
|
transitionPropName: {
|
||||||
|
type: String,
|
||||||
|
default: 'fade-transform',
|
||||||
|
},
|
||||||
|
transitionMode: {
|
||||||
|
type: String,
|
||||||
|
default: 'out-in',
|
||||||
|
},
|
||||||
|
transitionAppear: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
})
|
||||||
// 带过渡动画 `RouterView` 组件
|
// 带过渡动画 `RouterView` 组件
|
||||||
// 如果子路由需要做动画切换,则需要此组件
|
// 如果子路由需要做动画切换,则需要此组件
|
||||||
// 为什么必须为 `vue` 文件,因为 `tsx` 文件在解析的时候会抛出警告不好看
|
// 为什么必须为 `vue` 文件,因为 `tsx` 文件在解析的时候会抛出警告不好看
|
||||||
|
Loading…
x
Reference in New Issue
Block a user