是否可以在TSLint中的数组括号,函数,if,for,switch和object literals中强制执行空格,就像我们可以使用JSCS一样?
例如:
const list = [ 1, 2, 3 ];
console.debug( list[ 1 ]; );
function foo ( a, b, c ) {
...
}
const obj = { bar: 'bar' };
while ( true ) {
if ( false ) {
console.log( 'bar' );
}
}