Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@bryanrsmith/eslint-config-standard

bryanrsmith50MIT2.1.3

My standard eslint config

readme

eslint-config-standard

This is the standard eslint config that I use for personal projects.

npm install --save-dev @bryanrsmith/eslint-config-standard

example .eslintrc:

{
    "extends": "@bryanrsmith/eslint-config-standard",
    "parser": "babel-eslint",
    "env": {
        "es6": true,
        "node": true
    },
    "ecmaFeatures": {
        "modules": true,
        "experimentalObjectRestSpread": true
    }
}