我使用更漂亮的ESLint(使用--fix
运行eslint根据ESLint规则格式化代码)。
我希望导出总是多行。我已经尝试了我能想到的每一种组合,但结果并没有加起来。
相关的ESLint规则:https://eslint.org/docs/rules/object-curly-newline
我想要的是:
格式化之前:
export { a, b, c, d }
格式化后:
export {
a,
b,
c,
d
}
如果它是单一出口,那么一切都可以:
export { a }
// Or
export {
a
}
是否可以让--fix
这样做?我能得到的最接近的是:
export {
a, b, c, d
}