包详细信息

eslint-config-goodparts

92arpitgoyal36MIT0.0.1
eslint-config

自述文件

eslint-config-goodparts

An ESLint Shareable Config for JavaScript the Good Parts

Why?

Using JavaScript "The Good Parts" (abreviated to "goodparts") is the best way we know how to write simple, consistent, predictable and 100% cross-browser-compatible JavaScript code.

What?

Shareable Config with which you can extend in current ESLint to follow goodparts.

How?

After this is published to public npm.

you will need to first:

$ npm install eslint-config-goodparts --save

you can then extend .eslintrc file with goodparts to use it, like:

{
  "extends": [
    "goodparts"
  ]
}