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_2404_ES [XAVI] #2265

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
61c0c8e
feat: add learning goals section
ross-u Apr 18, 2023
0f8aabf
chore: create backup branch for migration
ross-u Apr 25, 2023
7fd7b40
chore: update package.json with new dependencies and scripts
ross-u Apr 25, 2023
a9d4a19
chore: bump version to 3.0.0 for vite migration
ross-u Apr 25, 2023
c32e6d7
feat: add vite configuration
ross-u Apr 25, 2023
f68cdeb
chore: update eslint configuration
ross-u Apr 25, 2023
92bc085
refactor: update starter code to use vite react boilerplate
ross-u Apr 25, 2023
f1030c8
chore: install new dependencies
ross-u Apr 25, 2023
1dfab0f
test: verify new setup with vite
ross-u Apr 25, 2023
4c9c749
feat: add tests for mandatory iterations
ross-u May 2, 2023
c96eb38
feat: add nock as a dev dependency for testing
ross-u May 2, 2023
b3f7f36
feat: add react-router-dom as a dependency to starter code
ross-u May 2, 2023
258522b
feat: add empty component files to starter code
ross-u May 2, 2023
c8cbb12
feat: update test messages & image assertions
ross-u May 2, 2023
3a86375
feat: rename Header component to Navbar
ross-u May 2, 2023
7add1fb
feat: update starter code
ross-u May 2, 2023
801022c
feat: improve lab instructions and style, fix formatting
ross-u May 2, 2023
451e6bf
feat: add section "test your code" and update instructions
ross-u May 3, 2023
8aca4e9
fix: fix formatting
ross-u May 3, 2023
0718e1e
Merge pull request #1 from ironhack-labs/migrate-to-vite
ross-u May 16, 2023
1fccba6
Update README.md
ross-u May 16, 2023
d7e301d
Update README.md
sandrabosk Jun 19, 2023
ba9882d
Update README.md
sandrabosk Jun 19, 2023
e620c66
fix: iteration 6 - wrong component name
ross-u Sep 18, 2023
21ecd0b
Merge pull request #16 from ironhack-labs/fix/iteration-6-component-name
ironhack-edu Sep 18, 2023
962767a
feat: update starter code
ross-u Oct 9, 2023
fb6ac8a
feat: update iteration instructions and scope
ross-u Oct 9, 2023
71bc47a
feat: update starter code
ross-u Oct 10, 2023
ed80828
feat: format README.md
ross-u Oct 10, 2023
57b6632
feat: add screenshots with expected results
ross-u Oct 10, 2023
b21bc1c
fix: screenshot styling and positioning
ross-u Oct 10, 2023
9728bb1
Done
Valveider-X May 8, 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
17 changes: 17 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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,
"no-unused-vars": ["error", { varsIgnorePattern: "^set" }],
},
};
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?
Loading