Hostelworld / eslint-config-hostelworld

Hostelworld ESLint Shareable Config

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

eslint-config-hostelworld

Build Status npm npm

ESLint Shareable Config extending eslint-config-standard.

Installation

  1. First install the following npm packages:

    # core package
    npm install --save-dev eslint-config-hostelworld
    # plus the peer dependencies
    npm install --save-dev eslint eslint-config-standard eslint-plugin-import eslint-plugin-node eslint-plugin-promise eslint-plugin-standard
  2. Then add eslint-config-hostelworld to your .eslintrc.* extends section:

    {
        "extends": [
            "hostelworld"
        ],
        "rules": {
            // Additional, per-project rules or overrides...
        }
    }

Additional rules

  • 4 spaces for indentation. rule
  • Semicolons are mandatory. rule
  • Curly braces always required, even in one liners. rule

License

This library is open-sourced software licensed under the MIT license.

Authors

Hostelworld Team

About

Hostelworld ESLint Shareable Config

License:MIT License


Languages

Language:JavaScript 100.0%