0.1.2 • Published 9 years ago
eslint-plugin-hackmud v0.1.2
eslint-plugin-hackmud
eslint plugin for Hackmud files
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-hackmud:
$ npm i eslint-plugin-hackmud --save-devNote: 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 }
}