Skip to content

Commit

Permalink
remove extra spaces in ruff.toml (jaraco/skeleton#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam authored Mar 4, 2025
1 parent 8f42595 commit b7d4b6e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ extend = "pyproject.toml"
[lint]
extend-select = [
# upstream

"C901", # complex-structure
"I", # isort
"PERF401", # manual-list-comprehension
"W", # pycodestyle Warning
# Ensure modern type annotation syntax and best practices

# Ensure modern type annotation syntax and best practices
# Not including those covered by type-checkers or exclusive to Python 3.11+
"FA", # flake8-future-annotations
"F404", # late-future-import
Expand All @@ -26,7 +26,7 @@ extend-select = [
]
ignore = [
# upstream

# Typeshed rejects complex or non-literal defaults for maintenance and testing reasons,
# irrelevant to this project.
"PYI011", # typed-argument-default-in-stub
Expand All @@ -44,7 +44,7 @@ ignore = [
"COM812",
"COM819",

# local
# local
]

[format]
Expand Down

0 comments on commit b7d4b6e

Please sign in to comment.