1.0.0 • Published 6 years ago

eslint-config-ura v1.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

eslint-config-ura

ESLint Shareable Config, configuring for the ura Javascript Style Guide

Installation

npm install eslint eslint-config-ura --save-dev

Usage

eslint-config-ura

Once the eslint-config-ura package is installed, you can use it by specifying ura in the extends section of your ESLint configuration.

{
  "extends": "ura",
  "rules": {
    // Additional, per-project rules...
  }
}

Or you can specifying eslint-config-ura in the eslintConfig section of your package.json

{
  "eslintConfig": {
    "extends": "eslint-config-ura"
  }
}