Brackets-InteractiveLinter icon indicating copy to clipboard operation
Brackets-InteractiveLinter copied to clipboard

eslint extends eslint:recommended not respected

Open tmcdonnell87 opened this issue 9 years ago • 4 comments

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 avatar Sep 10 '15 22:09 tmcdonnell87

@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 avatar Sep 11 '15 03:09 MiguelCastillo

@MiguelCastillo Any update? This would be really awesome and helpful. Thanks!

tmcdonnell87 avatar Sep 28 '15 18:09 tmcdonnell87

Supporting "eslint plugins and rule extensions" would be awesome! I saw some interesting rules at https://github.com/bahmutov/eslint-rules :smile:

PhiLhoSoft avatar Nov 04 '15 11:11 PhiLhoSoft

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:

emanuelebrivio avatar Feb 10 '16 08:02 emanuelebrivio