MiguelCastillo / Brackets-InteractiveLinter

Interactive linting for Brackets
Other
119 stars 26 forks source link

eslint extends eslint:recommended not respected #163

Open tmcdonnell87 opened 8 years ago

tmcdonnell87 commented 8 years ago

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

MiguelCastillo commented 8 years ago

@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.

tmcdonnell87 commented 8 years ago

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

PhiLhoSoft commented 8 years ago

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

emanuelebrivio commented 8 years ago

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: