-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
executable file
·66 lines (65 loc) · 2.03 KB
/
settings.json
File metadata and controls
executable file
·66 lines (65 loc) · 2.03 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
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
{
"window.zoomLevel": 0,
"editor.fontSize": 12,
"python.languageServer": "Pylance", // ms-python.vscode-pylance
"python.testing.unittestEnabled": false, // ms-python.python
"python.testing.pytestEnabled": true,
// "python.testing.pytestArgs": [
// "."
// ], // -x to bail
"python.testing.pytestArgs": ["igem"],
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.pylintArgs": [
"--load-plugins=pylint_django",
"--errors-only"
],
"python.formatting.autopep8Args": ["--indent-size=4"],
"python.defaultInterpreterPath": "venv/bin/python",
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8", // ms-python.python
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"[html]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "vscode.html-language-features",
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
}
},
"[django-html]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "vscode.html-language-features",
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
}
},
"files.associations": {
"*.js": "javascript",
"*.jsx": "javascriptreact",
"*.xml": "html",
"*.svg": "html",
"*.html": "html",
"django-html": "html", // batisteo.vscode-django
"**/*.html": "html",
"**/templates/**/*.html": "django-html",
"**/base_templates/**/*.html": "django-html",
"**/requirements{/**,*}.{txt,in}": "pip-requirements"
},
"emmet.includeLanguages": {
"django-html": "html", // batisteo.vscode-django
"javascript": "javascriptreact",
"typescript": "typescriptreact"
},
"python.formatting.provider": "none"
}