-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhgcal_quant.code-workspace
More file actions
91 lines (91 loc) · 3.08 KB
/
hgcal_quant.code-workspace
File metadata and controls
91 lines (91 loc) · 3.08 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
86
87
88
89
90
91
{
"extensions": {
"recommendations": [
"2gua.rainbow-brackets",
"ms-python.python",
"richie5um2.vscode-sort-json",
"timonwong.shellcheck"
]
},
"folders": [
{
"path": "."
}
],
"settings": {
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": false
},
"editor.formatOnSave": true
},
"debug.console.closeOnEnd": true,
"debug.terminal.clearBeforeReusing": true,
"docwriter.style": "Google",
"editor.formatOnSave": 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,
},
"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
},
"jupyter.jupyterLaunchRetries": 1,
"python.analysis.typeCheckingMode": "basic",
"python.defaultInterpreterPath": "/dev/shm/mscham/fgsim/bin/python",
"python.envFile": "~/fgsim/.env",
"python.formatting.blackPath": "/dev/shm/mscham/fgsim/bin/black",
"python.formatting.provider": "black",
"python.languageServer": "Pylance",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": "/dev/shm/mscham/fgsim/bin/pflake8",
"python.linting.ignorePatterns": [
"**/site-packages/**/*.py",
".vscode/*.py",
"wd/**"
],
"python.linting.lintOnSave": true,
"python.linting.mypyEnabled": true,
"python.linting.mypyPath": "/dev/shm/mscham/fgsim/bin/mypy",
"python.linting.pylintArgs": [
"--generated-members=numpy.* ,torch.*",
"--disable=E0402,C0116,logging-fstring-interpolation"
],
"python.linting.pylintEnabled": false,
"python.linting.pylintPath": "/dev/shm/mscham/fgsim/bin/pylint",
"python.terminal.activateEnvironment": false,
// "python.pipenvPath": "/dev/shm/mscham/fgsim/bin/pipenv",
"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": "/home/mscham/fgsim",
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "${env:HOME}/.apps/CentOSLinux7/bin/zsh",
}
},
},
}