Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FT_RMT_2408_ES Alejandro S. del Solo #1853

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9fc1e45
feat: add learning goals section
ross-u Apr 18, 2023
239f9ae
Update README.md
ross-u Apr 21, 2023
45d5478
feat: simplify the lab and update instructions
ross-u Apr 21, 2023
49de94e
fix: fix typos and improve instructions
ross-u Apr 21, 2023
f57a086
feat: remove boilerplate content
ross-u Apr 21, 2023
84b5a67
feat: add id field to food objects
ross-u Apr 21, 2023
4960dfe
chore: create backup branch for migration
ross-u Apr 25, 2023
0440f65
chore: update package.json with new dependencies and scripts
ross-u Apr 25, 2023
d08f792
chore: bump version to 3.0.0 for vite migration
ross-u Apr 25, 2023
18ee442
feat: add vite configuration
ross-u Apr 25, 2023
669fdd2
chore: update eslint configuration
ross-u Apr 25, 2023
b895f0b
refactor: update starter code to use vite react boilerplate
ross-u Apr 25, 2023
1b53fb8
chore: install new dependencies
ross-u Apr 25, 2023
92e8dc6
test: verify new setup with vite
ross-u Apr 25, 2023
16334dd
fix: improve iteration 5 instructions
ross-u Apr 26, 2023
4623335
feat: update lab instructions to better align with test suites
ross-u Apr 27, 2023
37c4f53
feat: add tests for mandatory iterations
ross-u Apr 27, 2023
f8417a6
feat: add empty component files to starter code
ross-u Apr 27, 2023
2b47ec0
feat: update style-guide files
ross-u Apr 27, 2023
2179bc7
feat: add section "test your code" and update instructions
ross-u May 3, 2023
b14f795
review
sandrabosk May 4, 2023
0cf5a7e
Merge pull request #1 from ironhack-labs/migrate-to-vite
ross-u May 16, 2023
c88217d
Update README.md
ross-u May 16, 2023
94ac4f2
test: update tests and descriptions for AddFoodForm
ross-u May 19, 2023
bfe8a32
feat: update faqs - remove react router question
ross-u Jun 6, 2023
5c651fc
Solved lab
as-Solo Sep 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
env: { browser: true, es2020: true, node: true },
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
],
parserOptions: { ecmaVersion: "latest", sourceType: "module" },
settings: { react: { version: "18.2" } },
plugins: ["react-refresh"],
rules: {
"react-refresh/only-export-components": "warn",
"react/prop-types": 0,
},
};
41 changes: 21 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
3 changes: 0 additions & 3 deletions .prettierrc

This file was deleted.

Loading