-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathtraffic.code-workspace
54 lines (51 loc) · 1.41 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
47
48
49
50
51
52
53
54
{
"folders": [{ "path": "." }],
"settings": {
// Formatting
"editor.formatOnSave": true,
"editor.rulers": [80],
"mypy-type-checker.importStrategy": "fromEnvironment",
"ruff.importStrategy": "fromEnvironment",
"[python]": {
"files.insertFinalNewline": true,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
}
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// Settings to build documentation
"esbonio.sphinx.confDir": "${workspaceFolder}/docs",
"esbonio.sphinx.srcDir": "${workspaceFolder}/docs",
"esbonio.sphinx.buildDir": "${workspaceFolder}/docs/_build/html",
"esbonio.server.enabled": false,
// File list
"files.exclude": {
"**/.git/": true,
"**/.ipynb_checkpoints/": true,
"**/.mypy_cache/": true,
"**/__pycache__/": true,
"**/.pytest_cache/": true,
"**/.ruff_cache/": true,
"build/": true,
"dist/": true,
"docs/_build": true,
"docs/node_modules": true
}
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.mypy-type-checker",
"charliermarsh.ruff",
"valentjn.vscode-ltex",
"ritwickdey.LiveServer"
]
}
}