mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 14:52:01 +00:00
Fix missing combine
call for lint.typing-extensions
setting (#17823)
## Summary Fixes #17821. ## Test Plan New CLI test. This might be overkill for such a simple fix, but it made me feel better to add a test.
This commit is contained in:
parent
fa628018b2
commit
fe4051b2e6
2 changed files with 32 additions and 1 deletions
|
@ -1172,7 +1172,7 @@ impl LintConfiguration {
|
|||
pylint: self.pylint.combine(config.pylint),
|
||||
pyupgrade: self.pyupgrade.combine(config.pyupgrade),
|
||||
ruff: self.ruff.combine(config.ruff),
|
||||
typing_extensions: self.typing_extensions,
|
||||
typing_extensions: self.typing_extensions.or(config.typing_extensions),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue