-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode.json
More file actions
27 lines (27 loc) · 720 Bytes
/
vscode.json
File metadata and controls
27 lines (27 loc) · 720 Bytes
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
{
"window.zoomLevel": 1,
"editor.formatOnSave": true,
"editor.rulers": [
100
],
"python.linting.mypyEnabled": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"100"
],
"python.unitTest.pyTestArgs": [
"tests",
],
"python.unitTest.unittestEnabled": false,
"python.unitTest.nosetestsEnabled": false,
"python.unitTest.pyTestEnabled": true,
"coverage-gutters.showLineCoverage": true,
"search.useRipgrep": false,
"file.associations": {
"*.pylintrc": "ini",
"Dockerfile-*": "dockerfile",
},
"eslint.autoFixOnSave": true,
"javascipt.format.exnable": false,
}