Skip to content

Commit

Permalink
Fix VSCode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjohnsonpint committed Jan 7, 2025
1 parent 3c24e8c commit e467c93
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"recommendations": [
"trunk.io",
"golang.go",
"GraphQL.vscode-graphql",
"ms-vscode.makefile-tools",
"streetsidesoftware.code-spell-checker"
"streetsidesoftware.code-spell-checker",
"trunk.io"
]
}
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"FORCE_COLOR": "1",
"MODUS_ENV": "dev",
"MODUS_DEBUG": "true",
"MODUS_DB": "postgresql://postgres:postgres@localhost:5433/my-runtime-db?sslmode=disable"
"MODUS_DB": "postgresql://postgres:postgres@localhost:5433/my-runtime-db?sslmode=disable" // checkov:skip=CKV_SECRET_4
},
"args": [
"--refresh=1s",
Expand All @@ -29,7 +29,7 @@
"FORCE_COLOR": "1",
"MODUS_ENV": "dev",
"MODUS_DEBUG": "true",
"MODUS_DB": "postgresql://postgres:postgres@localhost:5433/my-runtime-db?sslmode=disable"
"MODUS_DB": "postgresql://postgres:postgres@localhost:5433/my-runtime-db?sslmode=disable" // checkov:skip=CKV_SECRET_4
},
"args": ["--refresh=1s", "--appPath", "${input:appPath}"]
},
Expand All @@ -47,7 +47,7 @@
"AWS_REGION": "${input:awsRegion}",
"AWS_PROFILE": "${input:awsProfile}",
"AWS_SDK_LOAD_CONFIG": "true",
"MODUS_DB": "postgresql://postgres:postgres@localhost:5433/my-runtime-db?sslmode=disable"
"MODUS_DB": "postgresql://postgres:postgres@localhost:5433/my-runtime-db?sslmode=disable" // checkov:skip=CKV_SECRET_4
},
"args": [
"--useAwsStorage",
Expand Down
13 changes: 13 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"cSpell.flagWords": ["teh", "hte"],
"cSpell.import": ["${workspaceRoot}/.trunk/configs/cspell.json"],
"editor.formatOnSave": true,
"editor.defaultFormatter": "trunk.io",
"trunk.autoInit": false,
Expand All @@ -13,5 +14,17 @@
},
"go.testEnvVars": {
"MODUS_DEBUG": "true"
},
"[json]": {
"editor.defaultFormatter": "trunk.io"
},
"[jsonc]": {
"editor.defaultFormatter": "trunk.io"
},
"[javascript]": {
"editor.defaultFormatter": "trunk.io"
},
"[typescript]": {
"editor.defaultFormatter": "trunk.io"
}
}

0 comments on commit e467c93

Please sign in to comment.