forked from xoolive/traffic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtraffic.code-workspace
46 lines (42 loc) · 1.31 KB
/
traffic.code-workspace
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
41
42
43
44
45
46
{
"folders": [{ "path": "." }],
"settings": {
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.enabled": true,
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": ["tests"],
"esbonio.sphinx.confDir": "${workspaceFolder}/docs",
"esbonio.sphinx.srcDir": "${workspaceFolder}/docs",
"esbonio.sphinx.buildDir": "${workspaceFolder}/docs/_build/html",
"esbonio.server.enabled": false,
"cSpell.customDictionaries": {
"project-words": {
"name": "project-words",
"path": "${workspaceRoot}/.vscode/custom-spell.txt",
"description": "Words used in this project",
"addWords": true
},
"custom": true, // Enable the `custom` dictionary
"internal-terms": false // Disable the `internal-terms` dictionary
},
"cSpell.ignorePaths": [
".git/",
".vscode",
".vscode-insiders",
"traffic/core/aero.py",
"docs/conf.py",
"docs/_static/main_stylesheet.css"
],
"files.exclude": {
"dist/": true,
"build:": true,
"docs/_build": true,
"docs/node_modules": true
}
}
}