0.1.2 • Published 8 years ago

eslint-plugin-hackmud v0.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

eslint-plugin-hackmud

eslint plugin for Hackmud files

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-hackmud:

$ npm i eslint-plugin-hackmud --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-hackmud globally.

Usage

Add hackmud to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix. Add hackmud/hackmud to the env section of your .eslintrc configuration file.

{
    "plugins": [ "hackmud" ],
    "env": { "hackmud/hackmud": true }
}