-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpitot.code-workspace
41 lines (39 loc) · 1.03 KB
/
pitot.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
{
"folders": [{ "path": "." }],
"settings": {
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.inlayHints.variableTypes": true,
"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.organizeImports.ruff": true,
"source.fixAll.ruff": 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"
]
}
}