-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings_OM.json
More file actions
53 lines (53 loc) · 1.8 KB
/
settings_OM.json
File metadata and controls
53 lines (53 loc) · 1.8 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
{
"window.zoomLevel": 2,
"editor.fontSize": 24,
"editor.hover.enabled": true,
"workbench.startupEditor": "none",
"explorer.compactFolders": false,
"terminal.integrated.fontSize": 24,
"editor.rulers": [80, 120],
"workbench.colorTheme": "OM Theme (Default Dracula Italic)",
"workbench.iconTheme": "material-icon-theme",
"code-runner.executorMap": {
"python": "clear ; python -u"
},
"code-runner.runInTerminal": true,
"code-runner.ignoreSelection": true,
"editor.fontFamily": "'Fira Code', Consolas, 'Dank Mono', 'Source Code Pro', 'Fira Code', Menlo, 'Inconsolata', 'Droid Sans Mono', 'DejaVu Sans Mono', 'Ubuntu Mono', 'Courier New', Courier, Monaco, monospace",
"terminal.integrated.fontFamily": "",
"editor.fontLigatures": false,
"[python]": {
"editor.defaultFormatter": "ms-python.python",
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.unusedImports": true,
"source.organizeImports": true
}
},
"python.languageServer": "Pylance",
"python.formatting.autopep8Args": [
"--indent-size=4",
"--max-line-length=80"
// "--ignore=E111"
],
"python.linting.flake8Args": [
// "--ignore=E111",
],
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.analysis.diagnosticSeverityOverrides": {
"reportUnknownMemberType": "none",
"reportUnknownArgumentType": "none",
"reportUnknownVariableType": "none",
"reportUnknownLambdaType": "none",
"reportUnknownParameterType": "none"
},
// "python.defaultInterpreterPath": "./venv/bin/python",
"python.analysis.typeCheckingMode": "basic",
"cSpell.enabled": true
}