Hi,
Is there a way to change the app generated prefix + fixing the test warning: "ObSomeComponent" should have prefix "app"?
I have tried to change the prefix property in the angular-cli.json but it didn't help.
In my tslint.json, I set the check to off:
"directive-selector-prefix": [false, "app"],
thanks @chadbr !
Fixed it like this, in tslint.json
"component-selector": [
true,
"element",
"ObSomeComponent",
"kebab-case"
],
This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
_This action has been performed automatically by a bot._
Most helpful comment
thanks @chadbr !