You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider the ruff/cargo approach of --config for overriding configuration settings rather than shoving them all in the command line api.
Their thought process is that you should not be setting things like --indent-width at the cli most of the time, that prevents you and your colleagues from having identical formatting experiences. Instead you should rely on the presence of an air.toml to hold the configuration details. But sometimes it is still useful to override this.
Consider the ruff/cargo approach of
--config
for overriding configuration settings rather than shoving them all in the command line api.Their thought process is that you should not be setting things like
--indent-width
at the cli most of the time, that prevents you and your colleagues from having identical formatting experiences. Instead you should rely on the presence of anair.toml
to hold the configuration details. But sometimes it is still useful to override this.https://docs.astral.sh/ruff/configuration/#the-config-cli-flag
The text was updated successfully, but these errors were encountered: