-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjava-tutorial.code-workspace
More file actions
41 lines (41 loc) · 1.06 KB
/
Copy pathjava-tutorial.code-workspace
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"folders": [
{
"name": "Java Tutorial LMS",
"path": "."
}
],
"settings": {
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"python.defaultInterpreterPath": "./venv/bin/python",
"editor.rulers": [88],
"files.associations": {
"*.html": "html"
},
"emmet.includeLanguages": {
"javascript": "html"
},
"workbench.colorTheme": "Default Dark+",
"workbench.iconTheme": "vscode-icons"
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.flake8",
"ms-python.pylint",
"ms-python.black-formatter",
"bradlc.vscode-tailwindcss",
"formulahendry.auto-rename-tag",
"esbenp.prettier-vscode",
"ms-vscode.vscode-json"
]
}
}