-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode.settings.json
60 lines (55 loc) · 1.49 KB
/
vscode.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
{
// Editor
"editor.fontSize": 12,
"editor.tabSize": 2,
"editor.rulers": [
80,
120
],
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.autoClosingBrackets": true,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 130,
"editor.snippetSuggestions": "top",
// Files
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/bower_components": true,
"**/node_modules/**": true,
"**/.expo/": true,
"**/[Bb]in/**": true,
"**/[Oo]bj/**": true,
"**/.sass-cache/**": true,
"**/.cache/**": true,
"**/.tmp/**": true,
"**/env/**": true,
"**/*.pyc": true,
// exclude .js and .js.map files, when in a TypeScript project
"**/*.js": { "when": "$(basename).ts"},
"**/*.js.map": true
},
"files.encoding": "utf8",
"files.hotExit": "onExit",
// Explorer
"explorer.enableDragAndDrop": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/env": true
},
// Python
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.pep8Enabled": false,
"workbench.colorTheme": "Monokai",
"window.zoomLevel": 0,
// Syntax Specific
"[python]": {
"editor.tabSize": 4
}
}