Adobe Brackets disable jslint but allow jshint
Solution 1:
You can now add your preferred linters to Brackets' preferences file:
"language": {
"javascript": {
"linting.prefer": ["JSHint"],
"linting.usePreferredOnly": true
}
},
Open the preferences file with Debug > Open Preferences File
.
Brackets preferences
Example preferences.json file
Solution 2:
To have multiple linters while still disabling jslint use the above plus this:
"linting.prefer": [
"JSHint",
"JSCS"
],
Solution 3:
In the Brackets IDE, select File -> Extension Manager. Click the Default tab and look for JSLint in the search box and disable it.
Brackets version - 1.10
Solution 4:
1- go to menu-->Debug
2- go to "open Preferences File"
3- go to the file : "brackets.json"
4- copy and pase these codes on last line and dont forget separate code lines with ",":
"linting.prefer": ["JSHint"],
"linting.usePreferredOnly": true
*HOPE TO HELP :))