目前是这样的:
import {
t1,
t2,
t3,
t4,
t5,
t6,
t7,
t8,
t9,
....
t20,
} from someModule;
我想要它:
import {
t1,t2,t3,t4,t5,t6,
t7,t8,t9,..
..,t20,
} from someModule;
我正在使用 eslint 并且更漂亮,遵循 airbnb 风格指南。我想知道 eslint 和更漂亮的组合是否有可能,或者我应该看看替代品。提前致谢。Lmk 如果我需要在这里分享我的 .eslintrc 和 .prettierrc.js 文件。