1.0.1 • Published 5 years ago
eslint-plugin-detox-jest v1.0.1
eslint-plugin-detox-jest
ESLint environment for wix/detox using Jest
Installation
You'll first need to install ESLint:
$ yarn add eslint -D
OR
$ npm i eslint --save-dev
Next, install eslint-plugin-detox-jest
:
$ yarn add eslint-plugin-detox-jest -D
OR
$ npm i eslint-plugin-detox-jest --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-detox-jest
globally.
Usage
Add the following in your .eslintrc
or .eslintrc.js
configuration file:
{
"plugins": [
"detox-jest"
],
"env": {
"detox-jest/detox": true
},
}