-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathttl-dic.code-workspace
76 lines (76 loc) · 2.15 KB
/
ttl-dic.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
{
"folders": [
{
"name": "TTL Dictionary",
"path": ".",
}
],
"extensions": {
"recommendations": [
"2gua.rainbow-brackets",
"DavidAnson.vscode-markdownlint",
"IBM.output-colorizer",
"be5invis.toml",
"bungcip.better-toml",
"donjayamanne.githistory",
"eamodio.gitlens",
"linw1995.python-traceback-jumper",
"magicstack.MagicPython",
"mikestead.dotenv",
"ms-python.python",
"redhat.vscode-yaml",
"silverbulleters.gherkin-autocomplete",
"ms-vscode-remote.vscode-remote-extensionpack",
"hbenl.vscode-test-explorer",
"littlefoxteam.vscode-python-test-adapter"
]
},
"settings": {
"editor.renderWhitespace": "boundary",
"files.exclude": {
"**/.git": true,
"**/.venv": false,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/__pycache__": true,
"**/.ipynb_checkpoints": true,
"**/eggs": true,
"**/*.egg": true,
"**/*.egg-info": true,
"**/.install": true,
"**/.cache": true,
"**/.eggs": true,
"**/*.pyc": true,
"**/.ropeproject": true,
"**/.composer_*": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.ipynb_checkpoints/**": true
},
"files.associations": {
"Makefile*": "makefile",
".vars.*": "dotenv"
},
"editor.formatOnSave": true,
"python.formatting.provider": "yapf",
"diffEditor.ignoreTrimWhitespace": false,
"editor.fontFamily": "'mononoki-Regular Nerd Font Complete Mono', 'Overpass Heavy Nerd Font Complete Mono', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"workbench.fontAliasing": "antialiased",
"terminal.integrated.fontSize": 14,
"editor.minimap.enabled": false,
"pythonTestExplorer.testFramework": "pytest",
"python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest",
"python.testing.pytestEnabled": true,
"python.testing.autoTestDiscoverOnSaveEnabled": true,
"python.pythonPath": "${workspaceFolder}/.venv/bin/python",
"rst.preview.pythonPath": "${workspaceFolder}/.venv/bin/python",
"python.sortImports.path": "${workspaceFolder}/.venv/bin/isort"
}
}