Skip to content

Commit

Permalink
Merge remote-tracking branch 'github/main' into initial_implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-paul-mueller committed Apr 19, 2024
2 parents 4e24c0e + 935908f commit 93cf776
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,22 +100,23 @@ extend-select = [
"G", # flake8-logging-format
"C4", # flake8-comprehensions
"PT", # flake8-pytest-style
"UP", # pyupgrade # TODO: evaluate and remove if needed
"UP", # pyupgrade # TODO: in evaluation
"ARG", # flake8-unused-arguments
"ERA", # eradicate
"ICN", # flake8-import-conventions
"PGH", # pygrep-hooks
"PIE", # flake8-pie
"PTH", # flake8-use-pathlib
"RET", # flake8-return # TODO: evaluate and remove if needed
"RET", # flake8-return # TODO: in evaluation
"RUF", # Ruff-specific
"SIM", # flake8-simplify # TODO: evaluate and remove if needed
"SIM", # flake8-simplify # TODO: in evaluation
"T10", # flake8-debugger
"T20", # flake8-print # TODO: evaluate and remove if needed
"T20", # flake8-print # TODO: in evaluation
"NPY" # NumPy specific rules
]
ignore = [
'E501' # [line-too-long]
'E501', # [line-too-long]
'UP038' # [non-pep604-isinstance]
]
ignore-init-module-imports = true
unfixable = []
Expand Down Expand Up @@ -144,5 +145,6 @@ section-order = [
]

[tool.ruff.lint.per-file-ignores]
"noxfile.py" = ["T20"]
"tests/**" = ["T10", "T20"]
"!tests/**.py" = ["PT"] # Ignore `flake8-pytest-style` everywhere except in `tests/`
"noxfile.py" = ["T20"] # Ignore `flake8-print`
"tests/**" = ["T10", "T20"] # Ignore `flake8-debugger` and `flake8-print`

0 comments on commit 93cf776

Please sign in to comment.