-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsettings.json
More file actions
36 lines (36 loc) · 1 KB
/
settings.json
File metadata and controls
36 lines (36 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"python.testing.pytestArgs": [
"tests"
],
"python.testing.cwd": "./backend/ops_api",
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.analysis.autoImportCompletions": true,
"git.enableCommitSigning": true,
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"black-formatter.args": [
"--config",
"./backend/ops_api/pyproject.toml"
],
"flake8.args": [
"--config",
"./backend/ops_api/.flake8"
],
"sqltools.connections": [
{
"previewLimit": 50,
"server": "localhost",
"port": 5432,
"driver": "PostgreSQL",
"name": "OPS in Docker",
"database": "postgres",
"username": "ops"
}
],
"azureFunctions.deploySubpath": "backend/data_tools/scripts/azure",
"azureFunctions.projectLanguage": "PowerShell",
"azureFunctions.projectRuntime": "~4",
"debug.internalConsoleOptions": "neverOpen",
"azureFunctions.projectSubpath": "backend/data_tools/scripts/azure"
}