Skip to content

Commit

Permalink
feat(all-pages-panel): added all pages panel (#109)
Browse files Browse the repository at this point in the history
feat(all-pages-panel): added all pages panel
  • Loading branch information
catakot authored Sep 29, 2023
1 parent d5b2f6d commit 1ed3ba3
Show file tree
Hide file tree
Showing 30 changed files with 20,381 additions and 13,387 deletions.
28 changes: 21 additions & 7 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,15 +1,29 @@
{
"extends": ["@gravity-ui/eslint-config", "@gravity-ui/eslint-config/prettier"],
"extends": [
"@gravity-ui/eslint-config",
"@gravity-ui/eslint-config/prettier"
],
"root": true,
"env": {
"node": true,
"jest": true
},
"overrides": [
{
"files": ["**/__tests__/**/*.[jt]s?(x)", "**/?(*.)+(spec|test).[jt]s?(x)"],
"extends": ["plugin:testing-library/react"]
}
]
}

"files": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"extends": [
"plugin:testing-library/react"
]
},
],
"plugins": [
"react-hooks"
],
"rules": {
"react-hooks/rules-of-hooks": "error", // Checks rules of Hooks
"react-hooks/exhaustive-deps": "warn" // Checks effect dependencies
}
}
Loading

0 comments on commit 1ed3ba3

Please sign in to comment.