Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,11 @@ module.exports = {
// React:
"react/display-name": "off",
// "react/jsx-filename-extension": ["error", { "extensions": [".tsx"] }],
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
// "react/jsx-uses-react": "error",
// "react/jsx-uses-vars": "warn",
// "react/prop-types": "off",
"react/prop-types": "off",
// React hooks:
// "react-hooks/exhaustive-deps": "warn",
// "react-hooks/rules-of-hooks": "error",
Expand Down
10 changes: 8 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# Caches. Note that we are using Yarn PnP, so dependencies are not installed in node_modules.
# However, some tooling saves build caches to node_modules.
node_modules
**/node_modules

.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*

# Production
build
**/build
Expand Down
Loading