代码拉取完成,页面将自动刷新
import antfu from '@antfu/eslint-config';
export default antfu(
{
unocss: true,
},
{
ignores: ['uni_modules'],
},
{
files: ['**/*.vue'],
rules: {
'vue/block-order': [
'error',
{
order: ['template', 'script', 'style'],
},
],
},
},
{
rules: {
// 需要尾随逗号
'comma-dangle': ['error', 'only-multiline'],
// 允许console
'no-console': 'off',
// 需要分号
'style/semi': ['error', 'always'],
// 块内的空行
'padded-blocks': ['error', 'never'],
// 顶级函数应使用 function 关键字声明
'antfu/top-level-function': 'off',
// 全局的 process 不能用
'node/prefer-global/process': 'off',
// 禁止未使用的捕获组
'regexp/no-unused-capturing-group': 'off',
// 对所有控制语句强制实施一致的大括号样式
// curly: ["error", "multi", "consistent"],
'curly': 'off',
// 允许接口和类型别名中的成员之间使用三个分隔符
'style/member-delimiter-style': ['error', {
multiline: {
delimiter: 'semi',
requireLast: true,
},
singleline: {
delimiter: 'semi',
requireLast: false,
},
multilineDetection: 'brackets',
}],
'antfu/if-newline': 'off',
},
},
);
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。