This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
MLOps.code-workspace
52 lines (52 loc) · 1.61 KB
/
MLOps.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
{
"folders": [
{
"name": "root",
"path": "."
},
{
"name": "dagster-repo",
"path": "./code/dagster-repo"
}
],
"settings": {
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.formatting.provider": "black",
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true,
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"python.linting.flake8Args": [
"--max-line-length=150",
"--ignore=E203,W503",
"--exclude=**/__pycache__,.venv"
],
"java.configuration.updateBuildConfiguration": "automatic",
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#12263A",
"activityBar.activeBorder": "#06BCC1",
"activityBar.background": "#12263A",
"activityBar.foreground": "#F4EDEA",
"activityBar.inactiveForeground": "#F4EDEA",
"activityBarBadge.background": "#06BCC1",
"activityBarBadge.foreground": "#F4EDEA",
"sash.hoverBorder": "#12263A",
"statusBar.background": "#12263A",
"statusBar.foreground": "#F4EDEA",
"statusBarItem.hoverBackground": "#12263A",
"statusBarItem.remoteBackground": "#12263A",
"statusBarItem.remoteForeground": "#F4EDEA",
"titleBar.activeBackground": "#12263A",
"titleBar.activeForeground": "#F4EDEA",
"titleBar.inactiveBackground": "#12263A",
"titleBar.inactiveForeground": "#F4EDEA"
}
}
}