Skip to content

Commit

Permalink
steps 3 and 4
Browse files Browse the repository at this point in the history
  • Loading branch information
btholt committed Oct 1, 2022
1 parent 8722e5f commit 691529e
Show file tree
Hide file tree
Showing 21 changed files with 13,513 additions and 0 deletions.
36 changes: 36 additions & 0 deletions 03-jsx/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:react/recommended",
"plugin:jsx-a11y/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 03-jsx/.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 03-jsx/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Loading

0 comments on commit 691529e

Please sign in to comment.