Skip to content

Commit 293c177

Browse files
committed
Update VS Code settings
1 parent a1f23bb commit 293c177

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.vscode/settings.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,20 @@
99
"[python]": {
1010
"editor.formatOnSave": true,
1111
"editor.tabSize": 4,
12+
"editor.codeActionsOnSave": {
13+
"source.organizeImports": true
14+
},
1215
},
16+
"isort.args":["--profile", "black"],
1317
"editor.rulers": [
1418
88
1519
],
1620
"files.exclude": {
17-
"**/__pycache__": true
21+
"**/__pycache__": true,
22+
"build/**": true
1823
},
1924
"autoDocstring.guessTypes": false,
25+
"search.exclude": {
26+
"build/**": true
27+
},
2028
}

0 commit comments

Comments
 (0)