Skip to content

Commit

Permalink
added feedback to code after review
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof Poziomek committed Jul 4, 2022
1 parent 211e1d1 commit 79581ae
Show file tree
Hide file tree
Showing 45 changed files with 159 additions and 1,032 deletions.
4 changes: 3 additions & 1 deletion frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,6 @@ yarn-debug.log*
yarn-error.log*

.next
.env
.env

/.idea
5 changes: 0 additions & 5 deletions frontend/.idea/.gitignore

This file was deleted.

15 changes: 0 additions & 15 deletions frontend/.idea/frontend.iml

This file was deleted.

6 changes: 0 additions & 6 deletions frontend/.idea/inspectionProfiles/Project_Default.xml

This file was deleted.

6 changes: 0 additions & 6 deletions frontend/.idea/jsLinters/eslint.xml

This file was deleted.

8 changes: 0 additions & 8 deletions frontend/.idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions frontend/.idea/prettier.xml

This file was deleted.

6 changes: 0 additions & 6 deletions frontend/.idea/vcs.xml

This file was deleted.

30 changes: 22 additions & 8 deletions frontend/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,29 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "attach",
"name": "Attach to Chrome",
"port": 9222,
"webRoot": "${workspaceFolder}"
"name": "Next.js: debug server-side",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev"
},
{
"name": "Next.js: debug client-side",
"type": "pwa-chrome",
"request": "launch",
"url": "http://localhost:3000"
},
{
"name": "Next.js: debug full stack",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev",
"console": "integratedTerminal",
"serverReadyAction": {
"pattern": "started server on .+, url: (https?://.+)",
"uriFormat": "%s",
"action": "debugWithChrome"
}
}
]
}
5 changes: 5 additions & 0 deletions frontend/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ const customJestConfig = {
'!.eslintrc.js',
'!**coverage/**',
'!**lib/**',
'!**/styles/**',
'!**/tests/**',
'!**/store/*.js',
'!**/nonAuthenticated/**',
'!**/src/*.js',
],

moduleNameMapper: {
Expand Down
Loading

0 comments on commit 79581ae

Please sign in to comment.