planktoscope/.vscode/settings.json

23 lines
774 B
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",
}