We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parents8a78163 +351273f commitf7b85daCopy full SHA for f7b85da
README.md
@@ -16,8 +16,11 @@ var typescriptFormatter = require('gulp-typescript-formatter');
16
gulp.task('format', function () {
17
return gulp.src('**/*.ts')
18
.pipe(typescriptFormatter({
19
+ // see RootOptions interface for available options: https://github.com/vvakame/typescript-formatter/blob/master/lib/cli.ts#L25-L35
20
baseDir: '.',
- tsfmt: true
21
+tslint: true, // use tslint.json file?
22
+tsfmt: true, // use tsfmt.json file? Overrides settings in tslint.json (at least indentSize)
23
+editorconfig: true, // use .editorconfig file? Overrides tsfmt settings (at least indentSize)
24
})
25
.pipe(gulp.dest('.'));
26
}