Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 681 Bytes

File metadata and controls

22 lines (15 loc) · 681 Bytes

eslint-config-jest-enzyme

npm version License

Overview

This library is only useful if you are using jest-environment-enzyme. When you are using that library, React and enzyme specific variables are globalized. This lint config lets eslint know about those globals and not warn about them.

Setup

Add this extend to your eslint file:

{
  "extends": [
    "jest-enzyme"
  ]
}

This configuration only applies to test files that end in *.test.js.