1 Star 0 Fork 0

ND_LJQ/Lvext-UI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.cjs 2.38 KB
一键复制 编辑 原始数据 按行查看 历史
ND_LJQ 提交于 2022-12-03 11:22 . ✨新增: 修改配置文件
/*
* @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],
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liu-jq/lvext-ui.git
git@gitee.com:liu-jq/lvext-ui.git
liu-jq
lvext-ui
Lvext-UI
develop

搜索帮助