Reputation: 1819
I am using Angular 6 instead of AngularJS. But VS Code keeps suggesting me AngularJS code completion.
The first is AngularJS syntax and the second is Angular 6 syntax.
Where can I disable these AngularJS suggestions?
Upvotes: 1
Views: 274
Reputation: 1819
I finally found out it was a internal setting of VS Code.
Simply added:
"html.suggest.angular1": false
to my user settings.
Upvotes: 1