Last active
December 12, 2022 22:57
-
-
Save aq1018/89b26864e96305a80821d6aa506394dd to your computer and use it in GitHub Desktop.
VSCode Config Preset for DevOps repository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
[*.tf] | |
charset = utf-8 | |
indent_style = space | |
indent_size = 2 | |
[Makefile] | |
indent_style = tab | |
indent_size = 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"words": [ | |
], | |
"enableFiletypes": [ | |
"ruby", | |
"sql", | |
"terraform", | |
"terraform-vars" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"recommendations": [ | |
"hashicorp.terraform", | |
"matheusq94.tfs", | |
"streetsidesoftware.code-spell-checker", | |
"editorconfig.editorconfig", | |
"eamodio.gitlens" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true | |
}, | |
"cSpell.ignorePaths": [ | |
".git", | |
".terraform", | |
".vscode" | |
], | |
"cSpell.language": "en,en-US" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This VSCode Workspace Preset contains the following plugins and configurations:
To use these vscode workspace configs, simply run the following command in your project directory: