代码拉取完成,页面将自动刷新
/*
* @Author: ND_LJQ
* @Date: 2022-12-02 14:44:13
* @LastEditors: ND_LJQ
* @LastEditTime: 2022-12-02 21:04:04
* @Description:
* @Email: ndliujunqi@outlook.com
*/
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution');
module.exports = {
root: true,
env: {
browser: true, // 浏览器环境中的全局变量。
es2021: true,
node: true, // Node.js 全局变量和 Node.js 作用域。
},
// 继承共享的配置
extends: [
'plugin:prettier/recommended',
'plugin:vue/vue3-recommended',
'plugin:@typescript-eslint/recommended',
'@vue/eslint-config-prettier',
],
parser: 'vue-eslint-parser',
parserOptions: {
ecmaVersion: 2021,
parser: '@typescript-eslint/parser',
sourceType: 'module',
},
plugins: ['vue', '@typescript-eslint'],
/**
* 关闭: "off"或者0 警告: "warn"或者1 错误: "error"或者2
*/
rules: {
'prettier/prettier': 'warn',
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', // 禁止使用console
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', // 禁止使用debugger
'no-undef': 'off', // 不能有未定义的变量
'no-multi-spaces': 'error', // 禁止多个空格
/**
* eslint-plugin-vue
* https://eslint.vuejs.org/rules
* 此规则包含 "plugin:vue/vue3-recommended"
*/
'vue/no-v-html': 'off', // 不使用v-html
'vue/html-self-closing': [
'error',
{
html: {
void: 'any',
normal: 'any',
component: 'always',
},
svg: 'always',
math: 'always',
},
],
'vue/multiline-html-element-content-newline': 'off', // 强制在多行元素的内容前后加换行符
'vue/singleline-html-element-content-newline': 'off', // 强制在单行元素的内容前后加换行符
// Vue.js风格指南 https://v3.cn.vuejs.org/style-guide/
// Vue组件排序
'vue/order-in-components': [
'warn',
{
order: ['el', 'name', 'key', 'parent', 'functional'],
},
],
// Vue属性排序
'vue/attributes-order': [
'warn',
{
order: ['DEFINITION', 'LIST_RENDERING', 'CONDITIONALS'],
},
],
'@typescript-eslint/no-explicit-any': ['off'],
'vue/multi-word-component-names': 'off',
'@typescript-eslint/no-var-requires': 'off',
// indent: ['error', 2],
},
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。