https://github.com/nozzlegear/tsformatter
A small VSCode extension that formats TypeScript files using tsfmt.
https://github.com/nozzlegear/tsformatter
Last synced: 7 months ago
JSON representation
A small VSCode extension that formats TypeScript files using tsfmt.
- Host: GitHub
- URL: https://github.com/nozzlegear/tsformatter
- Owner: nozzlegear
- License: mit
- Created: 2015-12-31T21:54:27.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-16T20:31:18.000Z (over 9 years ago)
- Last Synced: 2025-01-16T13:00:02.504Z (9 months ago)
- Language: TypeScript
- Size: 3.31 MB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tsformatter
A small VSCode extension that formats TypeScript files using [tsfmt](https://github.com/vvakame/typescript-formatter). To control the format options, place a [`tsformat.json`](https://github.com/vvakame/typescript-formatter#read-settings-from-files) file in the current project's root directory.
(Note that this extension currently ignores editorconfig and tslint.json files.)
## Installation
Clone this repository, then install the required node modules:
```bash
npm install
```After that, use the VSCode command prompt to install the extension:
```bash
code tsformatter-1.0.0.vsix
```## TODO
- [ ] Read tsformat.json settings from VSCode settings, which can then be overridden by a tsformat.json file.