- Notifications
You must be signed in to change notification settings - Fork1
schmuli/gulp-typescript-formatter
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Gulp wrapper/plugin fortypescript-formatter to format TypeScript files with Gulp.
npm install --save-dev gulp-typescript-formattervar typescriptFormatter = require('gulp-typescript-formatter');gulp.task('format', function () { return gulp.src('**/*.ts') .pipe(typescriptFormatter({ // see RootOptions interface for available options: https://github.com/vvakame/typescript-formatter/blob/master/lib/cli.ts#L25-L35 baseDir: '.',tslint: true, // use tslint.json file?tsfmt: true, // use tsfmt.json file? Overrides settings in tslint.json (at least indentSize)editorconfig: true, // use .editorconfig file? Overrides tsfmt settings (at least indentSize) }) .pipe(gulp.dest('.'));}About
No description, website, or topics provided.
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.