vscode-arrr
vscode-arrr copied to clipboard
FeatureRequest: use project schematics
Currently ARRR generates:
- .component.html
- .component.css
- .component.spec.ts
- .component.ts
All files are generated with default preferences. But if Angular schematics is custom, generated files should be different. My request is to use schematics, defined in angular.json. For example, we use these options for components:
...
"changeDetection": "OnPush",
"export": false,
"flat": false,
"inlineStyle": false,
"inlineTemplate": false,
"skipImport": false,
"skipTests": true,
"style": "scss",
"viewEncapsulation": "Emulated",
"displayBlock": true
...
Ok got it!