-
-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1538 from klembot/update-eslint
Update eslint plugins, fix issues
- Loading branch information
Showing
73 changed files
with
463 additions
and
1,033 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier" | ||
], | ||
"ignorePatterns": ["src/__mocks__/*"], | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": ["@typescript-eslint", "jest", "testing-library"], | ||
"root": true, | ||
"rules": { | ||
"@typescript-eslint/no-explicit-any": 0, | ||
"react/display-name": 0, | ||
"react/prop-types": 0, | ||
"testing-library/no-render-in-setup": 0, | ||
"testing-library/render-result-naming-convention": 0 | ||
}, | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
} | ||
} | ||
} |
Oops, something went wrong.