1.0.1 • Published 7 years ago

eslint-plugin-testdouble v1.0.1

Weekly downloads
117
License
MIT
Repository
github
Last release
7 years ago

eslint-plugin-testdouble

ESLint rules for testdouble.js.

Install and configure

npm install --save-dev eslint-plugin-testdouble

Then add a reference to this plugin and selected rules in your eslint config:

{
  "plugins": [
    "testdouble"
  ],
  "env": {
    "testdouble/testdouble": true
  },
  "rules": {
    "testdouble/object-creation": [ "error", "plain" ]
  }
}

See Configuring Eslint on eslint.org for more info.