35 lines
911 B
JSON
35 lines
911 B
JSON
{
|
|
"[yaml]": {
|
|
"editor.tabSize": 2,
|
|
"editor.insertSpaces": true,
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "redhat.vscode-yaml"
|
|
},
|
|
"[python]": {
|
|
"editor.tabSize": 4,
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "charliermarsh.ruff"
|
|
},
|
|
"[dockerfile]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "exiasr.hadolint"
|
|
},
|
|
"[markdown]": {
|
|
"editor.wordWrap": "wordWrapColumn",
|
|
"editor.wordWrapColumn": 120
|
|
},
|
|
"yaml.schemas": {
|
|
"kubernetes": ["**/k8s/*.yaml", "**/k8s/*.yml"]
|
|
},
|
|
"yaml.format.enable": true,
|
|
"yaml.validate": true,
|
|
"yaml.completion": true,
|
|
"prettier.bracketSameLine": true,
|
|
"prettier.htmlWhitespaceSensitivity": "css",
|
|
"prettier.printWidth": 120,
|
|
"editor.formatOnSave": true,
|
|
"files.autoSave": "onFocusChange",
|
|
"editor.wordWrapColumn": 120,
|
|
"editor.wordWrap": "wordWrapColumn"
|
|
}
|