1 Star 0 Fork 102

Lysom/vue-data-visualization

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
.eslintrc.js 1.01 KB
Copy Edit Raw Blame History
MiyueFE authored 2021-04-18 16:48 . 1
module.exports = {
root: true,
env: {
node: true
},
extends: ['plugin:vue/vue3-essential', '@vue/typescript/recommended', '@vue/prettier'],
parserOptions: {
ecmaVersion: 2020
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'@typescript-eslint/no-explicit-any': 'off',
'prettier/prettier': [
'warn',
{
useTabs: false, // 不使用tab
singleQuote: true, // 不使用单引号
printWidth: 120, // 换行字符串阈值
semi: true, // 句末加分号
trailingComma: 'none', // 最后一个对象元素加逗号
bracketSpacing: true, // 对象,数组加空格
jsxBracketSameLine: true, // jsx > 是否另起一行
arrowParens: 'avoid', // (x) => {} 是否要有小括号
requirePragma: false, // 是否要注释来决定是否格式化代码
proseWrap: 'preserve' // 是否要换行
}
]
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lysom/vue-data-visualization.git
git@gitee.com:lysom/vue-data-visualization.git
lysom
vue-data-visualization
vue-data-visualization
main

Search