We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02debf7 commit 1378c03Copy full SHA for 1378c03
pyproject.toml
@@ -3,6 +3,10 @@ target-version = "py310"
3
lint.ignore = [
4
"E402", # module-import-not-at-top-of-file
5
]
6
+lint.extend-select = [
7
+ "I", # isort
8
+]
9
+lint.per-file-ignores."Tools/autotest/autotest.py" = ["I001"] # unsorted-imports
10
11
[tool.ruff.lint.isort]
12
force-single-line = true
@@ -11,6 +15,7 @@ known-first-party = [
15
"annotate_params",
16
"antennatracker",
13
17
"arducopter",
18
+ "balancebot",
14
19
"blimp",
20
"board_list",
21
"build_binaries_history",
@@ -19,6 +24,7 @@ known-first-party = [
24
"dma_resolver",
25
"emit",
26
"emit_md",
27
+ "examples",
22
28
"extract_param_defaults",
23
29
"gen_stable",
30
"generate_manifest",
0 commit comments