eslint-plugin-ebdd

ESLint environment for Mocha EBDD interface

Usage no npm install needed!

<script type="module">
  import eslintPluginEbdd from 'https://cdn.skypack.dev/eslint-plugin-ebdd';
</script>

README

eslint-plugin-ebdd ยท npm version

ESLint environment for Mocha EBDD interface.

Installation

Install ESLint and eslint-plugin-ebdd:

npm i --save-dev eslint eslint-plugin-ebdd

Note

If you installed ESLint globally (using the -g flag) then you must also install plugins globally:

npm i -g eslint-plugin-ebdd

Usage

Add "ebdd" to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix. Then configure the environment ebdd/ebdd under the "env" section.

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