forked from microsoft/hi-ml
-
Notifications
You must be signed in to change notification settings - Fork 1
/
himl-projects.code-workspace
114 lines (114 loc) · 3.27 KB
/
himl-projects.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"folders": [
{
"path": "hi-ml"
},
{
"path": "hi-ml-azure"
},
{
"path": "hi-ml-cpath"
},
{
"path": "hi-ml-multimodal"
},
{
"path": ".",
"name": "ROOT",
},
],
"extensions": {
"recommendations": [
"njpwerner.autodocstring",
"doi.fileheadercomment",
"ms-python.python",
"ms-python.vscode-pylance",
"davidanson.vscode-markdownlint",
"stkb.rewrap"
]
},
"launch": {
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false
},
],
"compounds": []
},
"settings": {
// Exclude all folders from the ROOT view that are displayed as top-level folders
"files.exclude": {
"hi-ml/": true,
"hi-ml-azure/": true,
"hi-ml-cpath/": true,
"hi-ml-multimodal/": true,
},
// The settings below are shared across all projects.
// When making changes here, please ensure they are kept in sync
// across all projects and the workspace configuration.
"autoDocstring.docstringFormat": "sphinx-notypes",
"fileHeaderComment.parameter": {
"*": {
"line": "-------------------------------------------------------------------------------------------",
"commentprefix": "#",
"company": "Microsoft Corporation"
}
},
"fileHeaderComment.template": {
"*": [
"${commentprefix} ${line}",
"${commentprefix} Copyright (c) ${company}. All rights reserved.",
"${commentprefix} Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.",
"${commentprefix} ${line}"
]
},
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/.mypy_cache/**": true,
"**/.pytest_cache/**": true
},
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.pycodestyleEnabled": false,
"python.linting.pycodestyleArgs": [
"--max-line-length=120",
"--show-source",
"--show-pep8"
],
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length=120"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"rewrap.autoWrap.enabled": true,
"rewrap.wrappingColumn": 120,
"[python]": {
"editor.rulers": [
120
],
},
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"terminal.integrated.env.windows": {
"PYTHONPATH": "${workspaceFolder:hi-ml-azure}/src;${workspaceFolder:hi-ml}/src;${workspaceFolder:hi-ml-cpath}/src"
},
"terminal.integrated.env.linux": {
"PYTHONPATH": "${workspaceFolder:hi-ml-azure}/src:${workspaceFolder:hi-ml}/src:${workspaceFolder:hi-ml-cpath}/src"
},
"workbench.colorCustomizations": {
"activityBar.background": "#135511",
"titleBar.activeBackground": "#135511",
"titleBar.activeForeground": "#FBFAF6"
},
}
}