我需要一个eslint规则,以禁止(并希望修复)对象属性在键和值之间有换行符的代码。请注意,我正在使用typescript-eslint / parser(如果有的话)
下面的评论演示了我想要的:
const foo = {
howdy: { // this is GOOD
ho: 'neighborino',
}
};
const bar = {
ouch: // this is BAD
{
my: 'eyes',
},
};