prettier / tslint-config-prettier

Use TSLint with Prettier without any conflict

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Prettier adds semicolon in front of line conflict with tslint

wong2 opened this issue ยท comments

commented

Prettier would turn this:

({ x }) = foo()

into:

;({ x } = foo())

which conflicts with unnecessary semicolon (no-extra-semi)

๐ŸŽ‰ This issue has been resolved in version 1.15.0 ๐ŸŽ‰

The release is available on:

Your semantic-release bot ๐Ÿ“ฆ๐Ÿš€

commented

great!