planktoscope/.vscode/settings.json
2022-12-20 07:30:06 +01:00

32 lines
1.1 KiB
JSON

{
"[nix]": {
"editor.defaultFormatter": "kamadorueda.alejandra",
"editor.formatOnSave": true,
},
"[toml]": {
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.codeLens": true
},
"python.formatting.provider": "black",
"python.globalModuleInstallation": false,
"python.languageServer": "Pylance",
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.pycodestyleEnabled": true,
"python.linting.pydocstyleEnabled": true,
"python.linting.pylintEnabled": true,
"python.testing.autoTestDiscoverOnSaveEnabled": true,
"python.testing.pytestEnabled": true,
"python.defaultInterpreterPath": "${workspaceFolder}/.direnv/dev/bin/python3",
"yaml.schemas": {
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
},
"yaml.customTags": [
"!ENV scalar",
"!ENV sequence",
"tag:yaml.org,2002:python/name:materialx.emoji.to_svg",
"tag:yaml.org,2002:python/name:materialx.emoji.twemoji",
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format"
]
}