mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
58 lines
2.0 KiB
JSON
58 lines
2.0 KiB
JSON
|
{
|
||
|
"[json]": {
|
||
|
"editor.defaultFormatter": "vscode.json-language-features",
|
||
|
"editor.quickSuggestions": {
|
||
|
"strings": true
|
||
|
},
|
||
|
"editor.suggest.insertMode": "replace",
|
||
|
"files.insertFinalNewline": true,
|
||
|
"gitlens.codeLens.scopes": ["document"]
|
||
|
},
|
||
|
"[python]": {
|
||
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
||
|
"editor.formatOnSave": true,
|
||
|
"editor.formatOnSaveMode": "file"
|
||
|
},
|
||
|
"[toml]": {
|
||
|
"editor.defaultFormatter": "tamasfe.even-better-toml",
|
||
|
"editor.formatOnSave": true,
|
||
|
"editor.formatOnSaveMode": "modificationsIfAvailable"
|
||
|
},
|
||
|
"[yaml]": {
|
||
|
"editor.defaultFormatter": "redhat.vscode-yaml",
|
||
|
"editor.formatOnSave": true,
|
||
|
"editor.formatOnSaveMode": "modificationsIfAvailable"
|
||
|
},
|
||
|
"editor.rulers": [88],
|
||
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||
|
"evenBetterToml.formatter.alignEntries": false,
|
||
|
"evenBetterToml.formatter.allowedBlankLines": 1,
|
||
|
"evenBetterToml.formatter.arrayAutoExpand": true,
|
||
|
"evenBetterToml.formatter.arrayTrailingComma": true,
|
||
|
"evenBetterToml.formatter.arrayAutoCollapse": true,
|
||
|
"evenBetterToml.formatter.columnWidth": 88,
|
||
|
"evenBetterToml.formatter.compactArrays": true,
|
||
|
"evenBetterToml.formatter.compactInlineTables": true,
|
||
|
"evenBetterToml.formatter.indentEntries": false,
|
||
|
"evenBetterToml.formatter.inlineTableExpand": true,
|
||
|
"evenBetterToml.formatter.reorderArrays": true,
|
||
|
"evenBetterToml.formatter.reorderKeys": true,
|
||
|
"evenBetterToml.formatter.compactEntries": true,
|
||
|
"evenBetterToml.schema.enabled": true,
|
||
|
"isort.check": true,
|
||
|
"isort.args": ["--profile=black", "--filter-files", "--color"],
|
||
|
"python.analysis.typeCheckingMode": "basic",
|
||
|
"python.formatting.provider": "black",
|
||
|
"python.languageServer": "Pylance",
|
||
|
"python.linting.enabled": true,
|
||
|
"python.linting.flake8Enabled": true,
|
||
|
"python.testing.unittestEnabled": false,
|
||
|
"python.testing.pytestEnabled": true,
|
||
|
"python.testing.pytestArgs": [
|
||
|
"tests",
|
||
|
"--cov=ldm",
|
||
|
"--cov-branch",
|
||
|
"--cov-report=term:skip-covered"
|
||
|
]
|
||
|
}
|