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.
2 parents 2f1ba32 + b6fe5f5 commit a6c5897Copy full SHA for a6c5897
docs/learning/better_code/ruff/index.md
@@ -100,6 +100,7 @@ def sum_even_numbers(numbers: List[int]) -> int:
100
#### Ignorare errori nel file di configurazione
101
102
```ini
103
+[lint]
104
# Enable flake8-bugbear (`B`) rules.
105
select = ["E", "F", "B"]
106
@@ -110,7 +111,7 @@ ignore = ["E501"]
110
111
unfixable = ["B"]
112
113
# Ignore `E402` (import violations) in all `__init__.py` files, and in `path/to/file.py`.
-[per-file-ignores]
114
+[lint.per-file-ignores]
115
"__init__.py" = ["E402"]
116
"path/to/file.py" = ["E402"]
117
```
0 commit comments