typescript-formatter
typescript-formatter copied to clipboard
object formatting issue
expected:
const a = {
a: 1,
b: 2,
c:
3,
};
actual
const a = {
a: 1,
b: 2,
c:
3,
};
tsfmt uses LanguageService API. You can open this request to TypeScript compiler repository. 👍