tslint使用google-ts-style规则
如果使用npm@5.3+,node 8.3+请运行
npx gts init
如果使用的是旧版,请运行
npm install --save-dev gts typescript@2.x
当你运行npx gts init命令时,它做的事情
- 将自定义
tsconfig.json
文件添加到使用Google TypeScript样式的项目中。 - 将必要的devDependencies添加到您的
package.json
。 - 添加脚本到您的
package.json
check
:Lints和格式问题检查。fix
:自动修复格式和linting问题(如果可能)。clean
:删除输出文件。compile
:使用TypeScript编译器编译源代码。pretest
,posttest
和prepare
:便利集成
gts check index.ts
gts check one.ts two.ts three.ts
gts check *.ts