- 在angular.json文件中永久禁用。您可以编辑schematics节点。
"schematics":{ "@schematics/angular:component": { "styleext": "scss", "spec": false }, "@schematics/angular:class": { "spec": false }, "@schematics/angular:directive": { "spec": false }, "@schematics/angular:guard": { "spec": false }, "@schematics/angular:module": { "spec": false }, "@schematics/angular:pipe": { "spec": false }, "@schematics/angular:service": { "spec": false } },
- 通过添加“--no-spec”在使用Angular-cli创建内容时禁用规范生成
ng generate component my-component --no-spec