-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-settings.json
82 lines (82 loc) · 3.01 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"editor.formatOnSave": false,
"explorer.confirmDragAndDrop": false,
"files.exclude": {
"**/__pycache__": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": true
},
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": false
},
"window.zoomLevel": 0,
"editor.fontFamily": "Menlo",
"files.trimTrailingWhitespace": true,
"workbench.editor.enablePreview": true,
"breadcrumbs.enabled": true,
"explorer.autoReveal": false,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "none",
"explorer.confirmDelete": false,
"editor.accessibilitySupport": "off",
"editor.showUnused": true,
"files.insertFinalNewline": false,
"editor.lineHeight": 15,
"workbench.colorCustomizations": {
"editor.background": "#2B303B",
"activityBar.background": "#2B303B",
// "list.inactiveSelectionBackground": "#C5DEF0",
// "sideBar.background": "#F8F6F6",
// "sideBar.foreground": "#000000",
// "editor.foreground": "#000000",
// "sideBarSectionHeader.background": "#CAC9C9",
// "sideBarSectionHeader.foreground": "#000000",
// "activityBar.border": "#FFFF00",
// "statusBar.background": "#102F97",
// "scrollbarSlider.activeBackground": "#77D4CB",
// "scrollbarSlider.hoverBackground": "#8CE6DA",
// "badge.background": "#81CA91",
// "editorGroupHeader.tabsBackground": "#2B303B",
// "tab.activeBackground": "#2B303B",
// "tab.inactiveBackground": "#2B303B",
},
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--enable=all",
"--max-line-length=110",
"--ignore=E731",
// "--ignore=E402,F841,F401,E302,E305",
],
// "python.envFile": "${workspaceFolder}../../.venvs",
"python.envFile": "${workspaceRoot}/.env",
"python.venvPath": "/Users/leonardo.vanzella/Projetos/.venvs/",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.colorTheme": "Spacegray Ocean Dark",
"[xml]": {
"editor.defaultFormatter": "Cameron.vscode-pytest"
},
"editor.largeFileOptimizations": false,
"terminal.integrated.rendererType": "dom",
"yaml.schemas": {
"file:///Users/leonardo.vanzella/.vscode/extensions/atlassian.atlascode-2.1.1/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"atlascode.jira.workingSite": {
"baseUrlSuffix": "atlassian.net"
},
"kite.showWelcomeNotificationOnStartup": false,
"diffEditor.ignoreTrimWhitespace": false,
"remote.SSH.configFile": "~/.ssh/sandbox.pem",
"terminal.integrated.shell.osx": "/bin/zsh",
"python.jediEnabled": false,
"atlascode.jira.workingProject": {
"id": "10033",
"name": "BUGS 2.0",
"key": "B20"
},
}