Skip to content

Commit

Permalink
Merge pull request #1538 from klembot/update-eslint
Browse files Browse the repository at this point in the history
Update eslint plugins, fix issues
  • Loading branch information
klembot committed Jun 30, 2024
2 parents 9346edd 8f71a7c commit 3dc7d3d
Show file tree
Hide file tree
Showing 73 changed files with 463 additions and 1,033 deletions.
24 changes: 24 additions & 0 deletions .eslintrc.json
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"
}
}
}
Loading

0 comments on commit 3dc7d3d

Please sign in to comment.