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

Workflow #389

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
d340db1
installing prettier
EF-Pami Jan 17, 2024
58f672a
adding formatting script
EF-Pami Jan 17, 2024
1cc6104
1.0.1
EF-Pami Jan 17, 2024
2fd2e70
changing type to module
EF-Pami Jan 17, 2024
2a6330d
installing eslint
EF-Pami Jan 17, 2024
d1e870b
installing eslint
EF-Pami Jan 17, 2024
bcc18b8
configuring eslint
EF-Pami Jan 17, 2024
10fc626
adding lint to script
EF-Pami Jan 17, 2024
1ddda9a
adding lint-fix to script
EF-Pami Jan 17, 2024
d109aee
adding gitHub link to package.json
EF-Pami Jan 18, 2024
bfa910a
just testing format in prettier
EF-Pami Jan 18, 2024
b530979
installing husky
EF-Pami Jan 22, 2024
bc80767
installing jest
EF-Pami Jan 22, 2024
4591bf8
adding test and test-unit to script
EF-Pami Jan 22, 2024
f5aeb40
adding overrides to eslintrc
EF-Pami Jan 22, 2024
d4d3f44
adding app.test.js file
EF-Pami Jan 22, 2024
58d6f0a
adding eslintcache
EF-Pami Jan 22, 2024
d9df945
installing and configuring babel
EF-Pami Jan 22, 2024
e7850e5
trying the test function on apple.js
EF-Pami Jan 22, 2024
b68ebbe
update on eslintcache
EF-Pami Jan 22, 2024
7c496f2
installing and configuring cypress
EF-Pami Jan 22, 2024
2cc2539
adding overrides for cypress into eslintrc.json
EF-Pami Jan 22, 2024
b310281
cypress configuration js file
EF-Pami Jan 24, 2024
9f33e9d
adding to gitignore
EF-Pami Jan 24, 2024
cd6e2af
update on cypress support files
EF-Pami Jan 24, 2024
45ca825
update on eslintcache
EF-Pami Jan 24, 2024
3893fcd
added localstorage.mock.js
EF-Pami Jan 26, 2024
21cb4b0
update husky
EF-Pami Jan 26, 2024
a87fe0a
added ReadME File
EF-Pami Jan 26, 2024
ee4d74c
Update apple.js
EF-Pami Jan 26, 2024
35b2a5c
Update .eslintcache
EF-Pami Jan 26, 2024
a288c8e
added logout.cy.js
EF-Pami Jan 27, 2024
40e8951
update .eslintcache
EF-Pami Jan 27, 2024
5ec440c
update package.json for automated testing
EF-Pami Jan 27, 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
13 changes: 13 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
}
}
Loading
Loading