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

Package detail

@hyperone/eslint-config

hyperonecom7MIT3.0.0

eslint config for hyperone

readme

eslint-config-hyperone

eslint rules for hyperone

how to use

install dependencies

npm install eslint --save-dev
npm install @hyperone/eslint-config --save-dev

add to your .eslintrc

extends: '@hyperone'

or use package.json

  "eslintConfig": {
    "extends": [
      "@hyperone"
    ]
  },
  "scripts": {
    "lint": "eslint .",
    "fmt": "eslint . --fix"
  },