forked from twosigma/marbles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
marbles.code-workspace
57 lines (57 loc) · 1.44 KB
/
marbles.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
{
"folders": [
{
"name": "marbles",
"path": "."
},
{
"name": "marbles.core",
"path": "marbles/core"
},
{
"name": "marbles.mixins",
"path": "marbles/mixins"
}
],
"settings": {
"python.testing.unittestArgs": [
"discover",
"-v",
"-s",
".",
"-p",
"*test*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.coverage": true,
"**/.coverage.*": true,
"**/*.egg-info": true,
".eggs": true,
".nox": true,
"**/dist": true,
"**/__pycache__": true
},
"esbonio.sphinx.confDir": "",
"git.branchProtection": ["main"]
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.flake8",
"ms-python.black-formatter",
"ms-python.mypy-type-checker",
"tamasfe.even-better-toml",
"lextudio.restructuredtext",
"trond-snekvik.simple-rst"
]
}
}