Skip to content

Commit

Permalink
11, 12, and 13
Browse files Browse the repository at this point in the history
  • Loading branch information
btholt committed Oct 6, 2022
1 parent 9d17a2d commit f281977
Show file tree
Hide file tree
Showing 54 changed files with 21,655 additions and 0 deletions.
37 changes: 37 additions & 0 deletions 11-error-boundaries/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"plugin:react-hooks/recommended",
"prettier"
],
"rules": {
"react/prop-types": 0,
"react/react-in-jsx-scope": 0
},
"plugins": ["react", "import", "jsx-a11y"],
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"settings": {
"react": {
"version": "detect"
},
"import/resolver": {
"node": {
"extensions": [".js", ".jsx"]
}
}
}
}
7 changes: 7 additions & 0 deletions 11-error-boundaries/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
.parcel-cache/
dist/
.env
.DS_Store
coverage/
.vscode/
1 change: 1 addition & 0 deletions 11-error-boundaries/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Loading

0 comments on commit f281977

Please sign in to comment.