1.1.0 • Published 5 years ago

@rasmuslp/eslint-config-rasmuslp v1.1.0

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

eslint-config-rasmuslp

CircleCI

This configuration is based on https://github.com/standard/eslint-config-standard, but with some notable changes:

  • indentation: tab
  • semi: required

And a few other tweaks.

Installation

Install eslint

$ npm install --save-dev eslint

Install this module, and the following dependencies:

$ npm install --save-dev https://github.com/rasmuslp/eslint-config-rasmuslp
$ npm install --save-dev eslint-config-standard eslint-plugin-standard eslint-plugin-promise eslint-plugin-import eslint-plugin-node

Configure eslint in your project by extending this configuration in your local .eslintrc.json

{
    "root": true,
    "extends": "rasmuslp"
}