Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
chore: added eslint test-focused override
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasconstantino committed Mar 20, 2019
1 parent bf70bc0 commit 396520b
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,20 @@
"rules": {
"react/react-in-jsx-scope": 2,
"react/jsx-curly-spacing": [2, { "when": "always", "children": true }]
}
},
"overrides": [
{
"files": ["*.test.js", "tests/**/*"],
"globals": {
"jest": false,
"describe": false,
"expect": false,
"it": false,
"beforeEach": false,
"beforeAll": false,
"afterEach": false,
"afterAll": false
}
}
]
}

0 comments on commit 396520b

Please sign in to comment.