Skip to content

Commit

Permalink
feat(vscode): add formatter for yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdicopter committed Jul 5, 2023
1 parent ff29388 commit d7ea6ec
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@
"editor.defaultFormatter": null
},
"[yaml]": {
"editor.defaultFormatter": null
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"[hcl]": {
"editor.defaultFormatter": "fredwangwang.vscode-hcl-format"
},
"python.formatting.blackArgs": ["--line-length", "100"],
"python.formatting.provider": "black"
"python.formatting.provider": "black",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"terraform.experimentalFeatures.validateOnSave": true
}

0 comments on commit d7ea6ec

Please sign in to comment.