Skip to content

untile/eslint-config-untile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eslint-config-untile

Untile-flavored ESLint config.

Installation

$ npm install eslint @untile/eslint-config-untile --save-dev

Usage

Create an .eslintrc.yml file with the following:

extends: untile

Add the following script to your package.json:

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

and run the linter with:

$ npm run lint

Releases

Be sure to have configured NPM_TOKEN in your globals.

npm version [<new version> | major | minor | patch] -m "Release %s"
git push origin master && git push --tags