标签: javascript eslint
对于多行if语句,是否有任何eslint规则或插件强制执行样式?
// Bad if (a && b) { // do stuff } // Good if ( a && b ) { // do stuff }