Skip to content

Commit

Permalink
Feature/ESLint GEO-95 (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
jer3k authored Dec 12, 2023
1 parent 08c3b62 commit c187346
Show file tree
Hide file tree
Showing 11 changed files with 2,182 additions and 544 deletions.
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"vue.volar"
]
}
41 changes: 41 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
// 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": [
{
"name": "Backend",
"request": "launch",
"runtimeArgs": ["run-script", "dev"],
"runtimeExecutable": "npm",
"skipFiles": ["backend/<node_internals>/**"],
"type": "node",
"cwd": "${workspaceFolder}/backend",
"preLaunchTask": "database"
},
{
"name": "Frontend",
"request": "launch",
"runtimeArgs": ["run-script", "serve"],
"runtimeExecutable": "npm",
"skipFiles": ["frontend/<node_internals>/**"],
"type": "node",
"cwd": "${workspaceFolder}/frontend"
},
{
"name": "Launch Edge",
"type": "msedge",
"request": "launch",
"url": "http://localhost:8081",
"webRoot": "${workspaceFolder}/frontend"
}
],
"compounds": [
{
"name": "Launch All",
"configurations": ["Backend", "Frontend", "Launch Edge"],
"stopAll": true
}
]
}
6 changes: 4 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"eslint.enable": false
}
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnPaste": true
}
10 changes: 10 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "database",
"type": "shell",
"command": "podman compose up -d database-migrations"
}
]
}
Loading

0 comments on commit c187346

Please sign in to comment.