Skip to content

Commit 6525e33

Browse files
committed
Add VS code setting
1 parent 6ba8b05 commit 6525e33

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed

vs-code-setting.json

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
{
2+
"files.associations": {
3+
"Pipfile": "pip-requirements",
4+
"*.geojson": "json"
5+
},
6+
"editor.minimap.enabled": false,
7+
"window.zoomLevel": 0,
8+
"files.exclude": {
9+
".mypy_cache": true,
10+
".pytest_cache": true,
11+
".vscode": true,
12+
"*.pyc": true,
13+
"**/__pycache__": true,
14+
"**/.ipynb_checkpoints": true
15+
},
16+
17+
"customizeUI.stylesheet": {
18+
".editor-actions": "display: none !important;",
19+
},
20+
"customizeUI.fontSizeMap": {
21+
"13px": "11px",
22+
"12px": "11px",
23+
"window-title": "12px", // Window title font when using custom titlebar
24+
"tab-title": "11px", // Used for editor tab titles
25+
"monospace": "10.5px", // Used for monospace fonts in user interface
26+
"menu": "13px", // Used for menu items (windows only)
27+
},
28+
"workbench.tree.indent": 18,
29+
"window.restoreWindows": "all",
30+
"python.linting.banditEnabled": true,
31+
"python.linting.flake8Enabled": true,
32+
"python.linting.flake8Args": [
33+
"--ignore=E24,W504,W293",
34+
"--max-line-length=100"
35+
],
36+
"python.linting.mypyArgs": [],
37+
"editor.suggestSelection": "first",
38+
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
39+
"workbench.colorTheme": "Dracula Soft",
40+
"php.suggest.basic": false,
41+
"php.validate.enable": false,
42+
"python.autoComplete.addBrackets": true,
43+
"editor.suggest.localityBonus": true,
44+
"diffEditor.renderSideBySide": false,
45+
"workbench.editor.highlightModifiedTabs": true,
46+
"screencastMode.verticalOffset": 15,
47+
"customizeUI.activityBar": "regular",
48+
"customizeUI.titleBar": "regular",
49+
"python.formatting.yapfArgs": [
50+
"ALLOW_MULTILINE_DICTIONARY_KEYS",
51+
"ALLOW_SPLIT_BEFORE_DICT_VALUE",
52+
"BLANK_LINE_BEFORE_NESTED_CLASS_OR_DEF",
53+
"COALESCE_BRACKETS",
54+
"INDENT_DICTIONARY_VALUE",
55+
"SPLIT_ALL_COMMA_SEPARATED_VALUES",
56+
"SPLIT_PENALTY_IMPORT_NAMES"
57+
],
58+
"editor.wordWrapColumn": 50,
59+
"python.testing.pytestEnabled": false,
60+
"todo-tree.highlights.enabled": true,
61+
"python.dataScience.sendSelectionToInteractiveWindow": false,
62+
"[python]": {
63+
"editor.defaultFormatter": "ms-python.python"
64+
// "editor.defaultFormatter": "ms-python.python"
65+
},
66+
// "python.formatting.provider": "yapf",
67+
// "python.linting.mypyCategorySeverity.note": "Hint",
68+
"editor.formatOnPaste": false,
69+
"editor.formatOnSave": false,
70+
"editor.formatOnType": false,
71+
"python.experiments.enabled": false,
72+
"python.jediEnabled": false,
73+
"python.formatting.provider": "black",
74+
"mypy.targets": [
75+
".",
76+
"../",
77+
"./*",
78+
"*"
79+
],
80+
"python.languageServer": "Microsoft",
81+
"editor.scrollBeyondLastLine": false,
82+
"vsintellicode.java.completionsEnabled": false,
83+
"vsintellicode.sql.completionsEnabled": false,
84+
"vsintellicode.typescript.completionsEnabled": false,
85+
"terminal.integrated.inheritEnv": false,
86+
"json.schemas": [
87+
88+
]
89+
}

0 commit comments

Comments
 (0)