Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 390 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 390 Bytes

eslint-config-seegno

Seegno-flavored ESLint config.

Installation

$ npm install eslint eslint-config-seegno --save-dev

Usage

Create an .eslintrc.yml file with the following:

extends: seegno

Add the following script to your package.json:

{
  "scripts": {
    "lint": "eslint ."
  }
}

and run the linter with:

$ npm run lint