-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomnicom.code-workspace
71 lines (70 loc) · 2.57 KB
/
omnicom.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"python.envFile": "${workspaceFolder}/.env",
"mypy.dmypyExecutable": "${workspaceFolder}/venv/Scripts/dmypy.exe",
"mypy.flags": ["--pretty", "--show-error-end", "--color-output"],
"python.analysis.typeCheckingMode": "basic", // or "strict"
"editor.codeActionsOnSave": {
"source.fixAll": "always"
},
"python.linting.enabled": true,
"python.linting.mypyArgs": ["--ignore-missing-imports"],
"files.associations": {
"*.py": "python"
},
"python.formatting.provider": "black",
"python.linting.lintOnSave": true,
"tasks.autoDetect": "on",
"files.autoSave": "onWindowChange",
"python.analysis.autoImportCompletions": true,
"cSpell.words": ["Clipy", "pynput"],
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true
// "python.pythonPath": "venv/bin/python",
// "python.linting.flake8Enabled": true,
// "python.linting.enabled": true,
// "python.linting.mypyEnabled": true,
// "python.formatting.provider": "black",
// "python.sortImports.path": "isort",
// "python.sortImports.args": ["--profile", "black"],
// "python.envFile": "${workspaceFolder}/.env",
// "mypy.dmypyExecutable": "${workspaceFolder}/venv/Scripts/dmypy.exe",
// "mypy.dmypyEnabled": true,
// "mypy.flags": ["--pretty", "--show-error-end", "--color-output"],
// "python.analysis.typeCheckingMode": "strict",
// "editor.formatOnSave": true,
// "editor.formatOnPaste": true,
// "editor.formatOnType": true,
// "python.pythonPath": "venv/bin/python",
// "python.linting.flake8Enabled": true,
// "python.linting.enabled": true,
// "python.linting.mypyEnabled": true,
// "python.formatting.provider": "black",
// "python.sortImports.path": "isort",
// "python.sortImports.args": ["--profile", "black"],
// "python.envFile": "${workspaceFolder}/.env",
// "python.analysis.typeCheckingMode": "basic", // or "strict"
// "editor.codeActionsOnSave": {
// "source.fixAll": "always"
// },
// "python.linting.enabled": true,
// "python.linting.mypyArgs": ["--ignore-missing-imports"],
// "files.associations": {
// "*.py": "python"
// },
// "python.formatting.provider": "black",
// "python.linting.lintOnSave": true,
// "tasks.autoDetect": "on",
// "files.autoSave": "onWindowChange",
// "python.analysis.autoImportCompletions": true
}
}