prettier / eslint-config-prettier

Turns off all rules that are unnecessary or might conflict with Prettier.
MIT License
5.47k stars 255 forks source link

Remove "standard" from "plugins" in Example Configuration #39

Closed zenflow closed 6 years ago

zenflow commented 6 years ago

eslint-config-standard (which is used in the example) already specifies eslint-plugin-standard as a plugin, so this line is redundant.

zenflow commented 6 years ago

I tried this out in my project, and the one non-stylistic rule in eslint-plugin-standard (no-callback-literal) is still applied.

lydell commented 6 years ago

It doesn’t hurt to list it again.

zenflow commented 6 years ago

Not sure then why we don't list all the other plugins from eslint-config-standard too (e.g. eslint-plugin-import, eslint-plugin-node, eslint-plugin-promise) but ok 😄

Thanks for the sweet package!