1.0.1 • Published 6 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-devNext, install eslint-plugin-detox-jest:
$ yarn add eslint-plugin-detox-jest -D
OR
$ npm i eslint-plugin-detox-jest --save-devNote: 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
},
}