-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsettings.json
94 lines (94 loc) · 3.14 KB
/
settings.json
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"auto-rename-tag.activationOnLanguage": [
"html",
"django-html",
"*"
],
"auto-close-tag.activationOnLanguage": [
"html",
"django-html"
],
"debug.console.fontSize": 11,
"debug.javascript.unmapMissingSources": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.formatOnSave": true,
"editor.linkedEditing": true,
"editor.rulers": [
94,
120
],
"editor.suggestSelection": "first",
"emmet.includeLanguages": {
"django-html": "html"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"eslint.workingDirectories": [
"./frontend"
],
"explorer.autoReveal": false,
"explorer.confirmDragAndDrop": false,
"files.associations": {
"**/*.html": "html",
"**/*.htm": "html",
"**/templates/**/*.html": "django-html",
"**/templates/**/*": "django-txt"
},
"files.autoSave": "onFocusChange",
"files.autoSaveDelay": 3000,
"files.eol": "\n",
"files.exclude": {
"**/.env": false,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": true,
"**/__pycache__": true,
"**/.cache": true,
"**/.next": true,
"**/.npm": true,
"**/node_modules": true,
"**/.venv": true,
},
"gitlens.currentLine.scrollable": false,
"php.suggest.basic": false,
"php.validate.enable": false,
"python.analysis.completeFunctionParens": true,
"python.formatting.blackPath": "${workspaceFolder}/.venv/bin/black",
"python.formatting.provider": "black",
"python.languageServer": "Pylance",
"python.linting.flake8Enabled": false,
"python.linting.flake8Path": "${workspaceFolder}/.venv/bin/flake8",
"python.linting.banditEnabled": false,
"python.linting.banditPath": "${workspaceFolder}/.venv/bin/bandit",
"python.linting.lintOnSave": false,
"python.linting.mypyPath": "${workspaceFolder}/.venv/bin/mypy",
"python.linting.pycodestylePath": "${workspaceFolder}/.venv/bin/pycodestyle",
"python.linting.pydocstylePath": "${workspaceFolder}/.venv/bin/pydocstyle",
"python.linting.pylintEnabled": false,
"python.linting.pylintPath": "${workspaceFolder}/.venv/bin/pylint",
"python.sortImports.path": "${workspaceFolder}/.venv/bin/isort",
"python.testing.pytestEnabled": false,
"python.terminal.activateEnvInCurrentTerminal": true,
"python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest",
"search.exclude": {
".venv": true
},
"terminal.integrated.cursorWidth": 4,
"terminal.integrated.cursorStyle": "line",
"workbench.tree.indent": 16,
"workbench.iconTheme": "material-icon-theme",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.value": 7,
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.terminal.activateEnvironment": true,
}