eslint-config-jest-enzyme
Advanced tools
Comparing version 5.0.1 to 5.0.2
15
index.js
module.exports = { | ||
overrides: [ | ||
{ | ||
files: ['**/*.test.js', '**/*.test.jsx'], | ||
files: [ | ||
'**/*.test.js', | ||
'**/*.test.jsx', | ||
'**/*.test.ts', | ||
'**/*.test.tsx', | ||
'**/__tests__/**/*.test.js', | ||
'**/__tests__/**/*.test.jsx', | ||
'**/__tests__/**/*.test.ts', | ||
'**/__tests__/**/*.test.tsx', | ||
'**/__tests__/**/*.js', | ||
'**/__tests__/**/*.jsx', | ||
'**/__tests__/**/*.ts', | ||
'**/__tests__/**/*.tsx', | ||
], | ||
globals: { | ||
@@ -6,0 +19,0 @@ React: true, |
{ | ||
"name": "eslint-config-jest-enzyme", | ||
"version": "5.0.1", | ||
"version": "5.0.2", | ||
"description": "Eslint Config for allowing jest-environment-enzyme globals", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
1841
26