zymbth / ymzhao-blogs

Blogs based on vitepress
https://blog.ymzhao.work
MIT License
0 stars 0 forks source link

实践:使用 @antfu/eslint-config 整合 ESLint 配置 | Corner Blog #4

Open utterances-bot opened 5 hours ago

utterances-bot commented 5 hours ago

实践:使用 @antfu/eslint-config 整合 ESLint 配置 | Corner Blog

实践:使用 @antfu/eslint-config 整合 ESLint 配置

https://blog.ymzhao.work/front-end/engineering/use-antfu-eslint-config

chimu23 commented 5 hours ago

你好,我同样使用了 antfu 的 eslint 配置,也移除了其它的 eslint-plugin-* 及 prettier 配置,但是我发现它eslint格式化的时候会有些差异,比如,someFunc({ a:1, b:2,

c: 3 }) ; 像是这种代码,我希望b跟c之间就可以直接去掉空行了,我试着使用 style/no-multiple-empty-lines': ['error', { max: 0 }], 但是这会导致 import 之后的代码也是紧连的;不知道您有没有解决方式?

zymbth commented 4 hours ago

在prettier可以实现,但eslint中好像没有相关规则用于禁止对象内空行的。antifu大佬舍弃后者的原因在这