We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad551b9 commit eb1db37Copy full SHA for eb1db37
.github/workflows/ruff.yml
@@ -16,4 +16,4 @@ jobs:
16
pip install ruff
17
# Update output format to enable automatic inline annotations.
18
- name: Run Ruff
19
- run: ruff check --output-format=github --select F822,PLC0414,RUF022 --preview .
+ run: ruff check --output-format=github .
ruff.toml
@@ -0,0 +1,13 @@
1
+[lint]
2
+preview = true
3
+select = [
4
+# Defaults
5
+"E4", "E7", "E9", "F",
6
+# Undefined export
7
+"F822",
8
+# Useless import alias
9
+"PLC0414"
10
+]
11
+
12
+# Ignore module import not at top of file
13
+ignore = ["E402"]
0 commit comments