forked from codetocloudorg/platform-engineering
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
23 lines (20 loc) · 1.49 KB
/
settings.json
File metadata and controls
23 lines (20 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
// Specifies the default extensions to be installed automatically in GitHub Codespaces
"github.codespaces.defaultExtensions": [
"ms-azuretools.vscode-docker", // Docker extension for managing containers and images directly from VS Code
"HashiCorp.terraform", // Terraform extension for working with Infrastructure as Code (IaC) configurations
"ms-azuretools.vscode-bicep", // Bicep extension for authoring and managing Azure resource templates
"streetsidesoftware.code-spell-checker", // Spell checker for identifying typos in code comments and documentation
"esbenp.prettier-vscode", // Prettier extension for enforcing consistent code formatting across the project
"golang.go", // Go extension for developing Dagger pipelines or other Go-based applications
"ms-python.python", // Python extension for developing Dagger pipelines or other Python-based applications
"redhat.vscode-yaml", // YAML extension for validating and editing Kubernetes, Azure, and other YAML configuration files
"tfsec.tfsec" // tfsec extension for scanning Terraform code to identify potential security issues
],
// Automatically format code on save to ensure consistent formatting
"editor.formatOnSave": true,
// Prettier configuration: Use single quotes for strings
"prettier.singleQuote": true,
// Prettier configuration: Add trailing commas where valid in ES5 (e.g., objects, arrays)
"prettier.trailingComma": "all"
}