Détail du package

eslint-config-default

leo81MIT0.2.1

How I'm writing JavaScript

standard, style, default, lint

readme

ESLint config Build Status

This is how I'm linting all of my projects. While this isn't an official standard (there isn't one), I strongly recommend this when it comes to the code styling of JavaScript projects.

Setup

To use this config in combination with ESLint, simply install the package...

npm install --save-dev eslint-config-default

...and add this to your package.json (we generally recommend keeping your ESLint cofiguration there instead of in a completely separate file):

"eslintConfig": {
  "extends": "default"
}

Boom! :boom: You're done.