/eslint-plugin-my-test

A dummy eslint plugin for testing

Primary LanguageJavaScript

eslint-plugin-my-test

A dummy plugin for testing

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-my-test:

npm install eslint-plugin-my-test --save-dev

Usage

Add my-test to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "my-test"
    ]
}