mirror of
https://github.com/MAGICGrants/truenas-apps.git
synced 2026-01-08 04:03:51 -05:00
26 lines
698 B
JSON
26 lines
698 B
JSON
{
|
|
"editor.defaultFormatter": null,
|
|
"files.associations": {
|
|
"templates/*.yaml": "jinja-yaml",
|
|
"templates/test_values/*.yaml": "yaml"
|
|
},
|
|
"[jinja-yaml]": {
|
|
"editor.defaultFormatter": null,
|
|
"editor.formatOnSave": false,
|
|
"editor.formatOnPaste": false
|
|
},
|
|
"black-formatter.args": ["--line-length", "120"],
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
"editor.defaultFoldingRangeProvider": "ms-python.flake8",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "always"
|
|
}
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
}
|
|
}
|