Skip to content

Commit 0b8e140

Browse files
tooling(fix): ruff autofix on save + filter static and unscheduled tests (#1837)
Co-authored-by: danceratopz <danceratopz@gmail.com>
1 parent 7c86d53 commit 0b8e140

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.vscode/settings.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"editor.formatOnSave": true,
1919
"editor.defaultFormatter": "charliermarsh.ruff",
2020
"editor.codeActionsOnSave": {
21-
"source.organizeImports": "explicit"
21+
"source.organizeImports": "explicit",
22+
"source.fixAll.ruff": "explicit",
2223
},
2324
},
2425
"python.analysis.autoFormatStrings": true,
@@ -57,9 +58,9 @@
5758
"ruff.logLevel": "error",
5859
"extensions.ignoreRecommendations": false,
5960
"search.exclude": {
60-
"tests/legacy": true
61+
"tests/static": true
6162
},
6263
"files.watcherExclude": {
63-
"tests/legacy": true
64+
"tests/static": true
6465
}
6566
}

0 commit comments

Comments
 (0)