Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove error icons in Brackets

I cannot find any option in preferences that can hide this annoying signs. I am coding Photoshop Script and errors detection works absolutely incorrect here. Any ideas how to disable it? It appeared in new Brackets version.

Unwanted error icons

like image 560
bodich Avatar asked Oct 26 '17 08:10

bodich


People also ask

How do I change the icons in brackets?

Open Brackets, and click the extensions button on the right. Search for 'Brackets Icons' and click install. You can choose the icon set in the view menu. You can choose between the icons of Ionicons (default, left image) and Devicons (right image). Besides these presets, you can also customize specific extensions.

How do I install brackets editor extensions?

To Install. Click the install button Lists Color Themes for The Brackets Editor. Lists all the Extensions you have Installed. This is where you can easily Disable or Remove Extensions you do not want via the Disable or Remove buttons. Lists all the Extensions available in order of popularity.

How to remove all data in brackets in Excel?

Normally, in Excel, the Find and Replace feature can help you to remove all data in brackets, please do as follows: 1. Select the data range that you want to remove all data in brackets. 2. Then click Home > Find & Select > Replace, (or you can also press Ctrl + H to open the Find and Replace dialog)see screenshot:

How do I install color themes for the brackets editor?

Click the install button Lists Color Themes for The Brackets Editor. Lists all the Extensions you have Installed. This is where you can easily Disable or Remove Extensions you do not want via the Disable or Remove buttons. Lists all the Extensions available in order of popularity.


2 Answers

I tried the above answer, and it I had no success. But, I did notice this little line in the brackets.json file.

"brackets-eslint.gutterMarks": true

Setting it to false did the trick for me!

EDIT:

Here are some clearer instructions.

  1. Open "Debug" menu
  2. Click on "Open Preferences File"
  3. In "brackets.json" set "brackets-eslint.gutterMarks" to false
like image 130
karafar Avatar answered Oct 06 '22 00:10

karafar


Dude, try this one.

  1. Click the "Debug" on the menu bar.
  2. Click the "Open Preferences File".
  3. try to add "linting.enabled" to bracket.json and set it to false. just like this. "linting.enabled": false. :)
like image 42
randomPerson Avatar answered Oct 05 '22 23:10

randomPerson