feat: vscode settings

This commit is contained in:
Toboshii Nakama
2022-07-30 11:14:46 -05:00
parent 8ffe64c484
commit 4dfbec2640
3 changed files with 39 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,5 +1,4 @@
# Editors
.vscode/
.fttemplates/
# Trash
.DS_Store

13
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"recommendations": [
"HashiCorp.terraform",
"britesnow.vscode-toggle-quotes",
"mitchdenny.ecdc",
"ms-kubernetes-tools.vscode-kubernetes-tools",
"oderwat.indent-rainbow",
"redhat.ansible",
"signageos.signageos-vscode-sops",
"usernamehw.errorlens",
"fcrespo82.markdown-table-formatter"
]
}

26
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
"ansible.ansibleLint.arguments": "-c .github/linters/.ansible-lint",
"discord.enabled": true,
"files.associations": {
"*.json5": "jsonc",
"**/ansible/**/*.yml": "ansible",
"**/ansible/**/*.sops.yml": "yaml",
"**/ansible/**/inventory/**/*.yml": "yaml",
"**/terraform/**/*.tf": "terraform"
},
"material-icon-theme.folders.associations": {
".taskfiles": "utils",
"hack": "scripts"
},
"prettier.configPath": ".github/linters/.prettierrc.yaml",
"prettier.ignorePath": ".github/linters/.prettierignore",
"yaml.schemas": {
"Kubernetes": "cluster/*.yaml"
},
"editor.fontFamily": "FiraCode Nerd Font",
"editor.fontLigatures": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs":"active",
"editor.hover.delay": 1500,
"explorer.autoReveal": false
}