Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable vscode comments - Flutter

Tags:

flutter

How to disable this type of comment? As the picture shows. image vscode

like image 743
Thiago Porto Avatar asked Mar 16 '18 02:03

Thiago Porto


People also ask

How do I disable Dart formatter?

Just go to Settings and type dart: enable sdk formatter and turn it off.

Does VS code support flutter?

Now We have to set up the Visual Studio Code for the Flutter. We have to install two extensions in order to use flutter. The very first extension is Flutter and 2nd is Dart. Note that Dart is the programming language that is used in flutter for the application development for both and android and iOS.


1 Answers

You can disable them by adding

"dart.closingLabels": false

in your vscode settings file. Once you save the settings file it will ask you to Reload the Project.

like image 98
Ankit Avatar answered Nov 10 '22 03:11

Ankit