{ "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "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" }, "[markdown]": { "editor.rulers": [80], "editor.unicodeHighlight.ambiguousCharacters": false, "editor.unicodeHighlight.invisibleCharacters": false, "diffEditor.ignoreTrimWhitespace": false, "editor.wordWrap": "on", "editor.quickSuggestions": { "comments": "off", "strings": "off", "other": "off" } }, "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": false, "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" ] }