Brackets-InteractiveLinter
Brackets-InteractiveLinter copied to clipboard
eslint extends eslint:recommended not respected
The .eslintrc declaration "extends": "eslint:recommended" does not seem to work in the interactive linter using version 1.0.5.
Sample .eslintrc file: {
"rules": {
"quotes": [
2,
"single"
],
"semi": [
2,
"always"
]
},
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended"
}
The only lint errors are from the rules defined directly in the .eslintrc file (quotes and semicolons).
Thanks, Terry
@tmcdonnell87 interactive linter does not support that right now. It is on my to do list though. I also need it :)
Gotta figure out 2 primary things. Support eslint plugins and rule extensions. Perhaps I will have time in the next couple of days.
@MiguelCastillo Any update? This would be really awesome and helpful. Thanks!
Supporting "eslint plugins and rule extensions" would be awesome! I saw some interesting rules at https://github.com/bahmutov/eslint-rules :smile:
Hey @MiguelCastillo! Do you have any news about ESLint plugins and extensions? Because I need it... I tried using https://github.com/zaggino/brackets-eslint but it's not as awesome as the Interactive Linter... :disappointed: