We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 876e910 commit 10f0695Copy full SHA for 10f0695
2 files changed
.vscode/settings.json
@@ -0,0 +1,15 @@
1
+{
2
+ "editor.defaultFormatter": "charliermarsh.ruff",
3
+ "python.testing.pytestArgs": ["tests"],
4
+ "python.testing.unittestEnabled": false,
5
+ "python.testing.pytestEnabled": true,
6
+ "editor.rulers": [88],
7
+ "[python]": {
8
+ "editor.formatOnSave": true,
9
+ "editor.codeActionsOnSave": {
10
+ "source.fixAll": "explicit",
11
+ "source.organizeImports": "explicit"
12
+ },
13
+ "editor.defaultFormatter": "charliermarsh.ruff"
14
+ }
15
+}
ruff.toml
@@ -1,4 +1,4 @@
-line-length = 120
+line-length = 88
[format]
docstring-code-format = true
@@ -7,6 +7,8 @@ quote-style = "double"
indent-style = "space"
[lint]
+select = ["ALL"]
+ignore = ["TRY003", "COM812", "N818"]
[lint.per-file-ignores]
"**/scripts/*" = [
0 commit comments