-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode_settings.json
95 lines (95 loc) · 2.79 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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--max-line-length=100"
],
"python.linting.mypyArgs": [
"--show-column-numbers"
],
"python.analysis.memory.keepLibraryLocalVariables": true,
"python.jediEnabled": false,
"python.analysis.memory.keepLibraryAst": true,
"python.languageServer": "Pylance",
"python.testing.pytestEnabled": true,
"editor.suggestSelection": "first",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.codeActionsOnSave": null,
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.mouseWheelZoom": true,
"editor.guides.bracketPairs": true,
"editor.formatOnType": false,
"editor.bracketPairColorization.enabled": true,
"editor.rulers": [
100
],
"background.customImages": [
"file://C:/PATH_TO_IMAGE",
"file://C:/PATH_TO_IMAGE",
"file://C:/PATH_TO_IMAGE"
],
"background.useDefault": false,
"cSpell.userWords": [
"chdir",
"dbname",
"devel",
"entrypoint",
"gunicorn",
"initdb",
"localtime",
"lxml",
"mkvirtualenv",
"noqa",
"numpy",
"pgadmin",
"portainer",
"postgres",
"postgresql",
"psycopg",
"pyplot",
"pytest",
"quokka",
"servlet",
"Sojusan",
"venv",
"virtualenvwrapper"
],
"cSpell.language": "en, pl",
"liveshare.presence": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.associations": {
"*.html": "html",
"*.cu": "cpp"
},
"workbench.colorTheme": "Deepdark Material Theme | Full Black Version",
"workbench.productIconTheme": "fluent-icons",
"workbench.iconTheme": "vscode-icons",
"workbench.editor.wrapTabs": true,
"tabnine.experimentalAutoImports": true,
"codestream.email": "[email protected]",
"codestream.serverUrl": "https://api.codestream.com",
"backgroundCover.imagePath": "c:\\PATH_TO_IMAGE",
"backgroundCover.autoStatus": true,
"redhat.telemetry.enabled": false,
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.NoBrowser": true,
"git.enableSmartCommit": true,
"prettier.printWidth": 100,
"plantuml.diagramsRoot": "uml\\",
"plantuml.exportFormat": "png",
"plantuml.jarArgs": [
"charset UTF-8"
],
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"window.dialogStyle": "custom",
"eslint.format.enable": true,
"shellcheck.customArgs": [
"-x"
]
}