Skip to content

Commit

Permalink
feat(vscode): add sql format
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdicopter committed Dec 27, 2023
1 parent 3a60238 commit 5c466a2
Showing 1 changed file with 23 additions and 15 deletions.
38 changes: 23 additions & 15 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{
"[hcl]": {
"editor.defaultFormatter": "fredwangwang.vscode-hcl-format"
},
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"better-comments.multilineComments": true,
"editor.accessibilitySupport": "off",
"editor.bracketPairColorization.enabled": true,
Expand All @@ -9,31 +15,33 @@
"editor.insertSpaces": true,
"editor.tabSize": 2,
"extensions.ignoreRecommendations": true,
"files.associations": {
"**/*.yaml": "yaml",
"**/.github/**/*.yml": "yaml",
"**/*.yml": "ansible"
},
"files.insertFinalNewline": true,
"prettier.bracketSpacing": false,
"prettier.requireConfig": false,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"redhat.telemetry.enabled": false,
"telemetry.telemetryLevel": "off",
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.fontFamily": "MesloLGS NF",
"terraform.experimentalFeatures.validateOnSave": true,
"vsicons.dontShowNewVersionMessage": true,
"yaml.format.bracketSpacing": false,
"workbench.colorTheme": "Atom One Dark",
"workbench.iconTheme": "vscode-icons",
"workbench.startupEditor": "none",
"prettier.enable": true,
"[python]": {
"editor.defaultFormatter": null
"python.venvFolders": ["~/.virtualenvs"],
"[terraform]": {
"editor.defaultFormatter": "hashicorp.terraform"
},
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"[hcl]": {
"editor.defaultFormatter": "fredwangwang.vscode-hcl-format"
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.blackArgs": ["--line-length", "100"],
"python.formatting.provider": "black",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"terraform.experimentalFeatures.validateOnSave": true
"[sql]": {
"editor.defaultFormatter": "adpyke.vscode-sql-formatter"
}
}

0 comments on commit 5c466a2

Please sign in to comment.