-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathsettings.recommended.json
40 lines (40 loc) · 1.42 KB
/
settings.recommended.json
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
37
38
39
40
{
"cSpell.customDictionaries": {
"project-words": {
"name": "project-words",
"path": "${workspaceRoot}/whitelist.txt",
"description": "Words used in this project",
"addWords": true
},
"custom": true, // Enable the `custom` dictionary
"internal-terms": false // Disable the `internal-terms` dictionary
},
"[python]": {
"editor.rulers": [100],
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"python.analysis.autoFormatStrings": true,
"python.testing.promptToConfigure": false,
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
// To discover tests for an upcoming fork, use the `--until` argument as following.
// "--until=Prague",
// Hopefully vscode-python will support multiple test framework environments sooon, see
// https://github.com/microsoft/vscode-python/issues/12075
// For now, to toggle between running "framework tests" and "filling tests" comment/
// uncomment the relevant line below.
"-c",
// "pytest-framework.ini",
"pytest.ini"
// "-vv"
],
"black-formatter.args": [
"--line-length",
"99"
]
}