vscode-arrr icon indicating copy to clipboard operation
vscode-arrr copied to clipboard

FeatureRequest: use project schematics

Open ScarletFlash opened this issue 3 years ago • 1 comments

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
          ...

ScarletFlash avatar Aug 31 '20 11:08 ScarletFlash