2024.12.0
What's Changed
This release upgrades the bundled Ruff version to v0.2.2.
As of v0.2.2, Ruff now accepts configuration for arbitrary settings on command-line arguments via
the --config
flag, which in turn allows for configuration arbitrary settings within the VS Code
extension.
For example, to set Ruff's lint.isort.combine-as-imports
setting to false
, add the following to
your settings.json
:
{
"ruff.lint.args": ["--config", "lint.isort.combine-as-imports=false"]
}
New Contributors
Full Changelog: 2024.10.0...2024.12.0