-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.json
34 lines (30 loc) · 1.04 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
{
// Python settings
"python.pythonPath": "/usr/local/bin/python3",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintArgs": [
"--disable=C0114", // Disable missing-module-docstring warning
"--disable=C0115", // Disable missing-class-docstring warning
"--disable=C0116" // Disable missing-function-docstring warning
],
"python.formatting.provider": "black",
"python.formatting.blackArgs": ["--line-length", "120"],
// Editor settings
"editor.wordWrap": "on",
"editor.minimap.enabled": false,
// "editor.renderWhitespace": "all",
"editor.formatOnSave": true,
"security.workspace.trust.untrustedFiles": "open",
"workbench.startupEditor": "newUntitledFile",
// Terminal settings
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
// Python only
"[python]": {
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false
}
}