typescript-formatter icon indicating copy to clipboard operation
typescript-formatter copied to clipboard

Formatter of TypeScript code

Results 44 typescript-formatter issues
Sort by recently updated
recently updated
newest added
trafficstars

Is it? or is it just following config format from vscode. I'm looking for which project is the default ts formatter for typescript

Fixes #166 This change allows configuring the `insertSpaceAfterOpeningAndBeforeClosingEmptyBraces` formatting option To add support for this etting, I also had to pick up a newer TS version that includes this setting....

**Repo** 1. Create `tsfmt.json`: ``` { "insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": true, } ``` 2. Using the latest TS 4.5-nighty, try formatting: ```ts 1 || {} ``` **Bug** No space is added between the...

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.5 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.5&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.7.1 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 2.8.8 (2020-02-29) Bug Fixes #61 & #65...

dependencies

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.10 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...

dependencies

Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.0.11 to 4.7.7. Changelog Sourced from handlebars's changelog. v4.7.7 - February 15th, 2021 fix weird error in integration tests - eb860c0 fix: check prototype property access in...

dependencies

I would like to use `typescript-formatter` on the command line to call the SQL formatting functionality in [`typescript-sql-tagged-template-plugin`](https://github.com/frigus02/typescript-sql-tagged-template-plugin) (when SQL is in inline tagged template literals). The language service plugin...

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...

dependencies

When having opening curly braces on new lines, it is pretty normal to have the `else` on it's own line. My tsfmt.json is: ``` { "baseIndentSize": 0, "indentSize": 4, "tabSize":...