-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfgsim.code-workspace
More file actions
85 lines (85 loc) · 2.73 KB
/
fgsim.code-workspace
File metadata and controls
85 lines (85 loc) · 2.73 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"extensions": {
"recommendations": [
"ms-python.python",
"charliermarsh.ruff",
]
},
"folders": [
{
"path": "."
}
],
"settings": {
"[python]": {
"editor.codeActionsOnSave": {
// "source.organizeImports": "explicit",
"source.fixAll": "explicit"
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff"
},
"debug.console.closeOnEnd": true,
"debug.terminal.clearBeforeReusing": true,
"files.exclude": {
"**/.*": true,
"**/CVS": true,
"**/Thumbs.db": true,
"**/__*__/**": true,
"fgsim/old/": true,
"*.egg-info": true,
"data/": true,
"wd/": true,
"*.tar": true,
"*.sqlite": true,
"performance/*": true,
"**/fgbackup/*": true,
"**/*.pdf": true,
"**/*.pgf": true,
},
"files.watcherExclude": {
"**/.*": true,
"**/CVS": true,
"**/Thumbs.db": true,
"**/__*__/**": true,
"fgsim/old/": true,
"*.egg-info": true,
"data/": true,
"wd/": true,
"*.tar": true,
"*.sqlite": true,
"performance/*": true,
"**/.git": true,
"**/node_modules/*/**": true,
"**/fgbackup/*": true,
"**/*.pdf": true,
"**/*.pgf": true,
},
"jupyter.jupyterLaunchRetries": 1,
"python.analysis.typeCheckingMode": "basic",
"python.defaultInterpreterPath": "/dev/shm/mscham/fgsim/bin/python",
"python.envFile": "~/fgsim/.env",
"python.languageServer": "Jedi",
"python.terminal.activateEnvironment": false,
"python.testing.pytestEnabled": true,
"python.testing.pytestPath": "/dev/shm/mscham/fgsim/bin/pytest",
"python.testing.unittestEnabled": false,
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.cwd": "${env:HOME}/fgsim",
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "${env:HOME}/.apps/RedHatEnterpriseLinux9/bin/zsh",
}
},
"black-formatter.interpreter":["/dev/shm/mscham/fgsim/bin/python"],
"black-formatter.path": [
"/dev/shm/mscham/fgsim/bin/black"
],
"black-formatter.importStrategy": "fromEnvironment",
"ruff.interpreter": [
"/dev/shm/mscham/fgsim/bin/python"
],
"jupyter.debugJustMyCode": true,
"jupyter.interactiveWindow.creationMode": "perFile",
},
}