File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,24 +37,24 @@ ignore-words-list = "dne, compiletime"
3737target-version = " py312"
3838line-length = 120
3939# Enable Pyflakes `E` and `F` codes by default.
40- select = [
40+ lint. select = [
4141 " E" , " W" , # see: https://pypi.org/project/pycodestyle
4242 " F" , # see: https://pypi.org/project/pyflakes
4343 " I" , # isort
4444 " RUF100" , # unnecessary noqa comment
4545 " UP" , # pyupgrade
4646]
47- ignore = [
47+ lint. ignore = [
4848 " E731" , # Do not assign a lambda expression, use a def
4949 " Q" # Ignore quotes
5050]
5151# Exclude a variety of commonly ignored directories.
5252exclude = [
5353 " docs"
5454]
55- ignore-init-module-imports = true
55+ lint. ignore-init-module-imports = true
5656format.quote-style = " preserve"
5757
58- [tool .ruff .pydocstyle ]
58+ [tool .ruff .lint . pydocstyle ]
5959# Use Google-style docstrings.
6060convention = " google"
You can’t perform that action at this time.
0 commit comments