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
The extend-ignore and extend-unfixable options are documented as deprecated but they're still widely used. @charliermarsh argues that he would add the settings if they didn't exist today (for flake8 compact?).
We should either formally deprecate the CLI options (the configuration options have been deprecated for a while) or un-deprecate the settings.
We could consider defining extend-unfixable as an alias for unfixable and extend-ignore for ignore. Both serde and clap support aliasing. The downside would be that the options don't show up in the CLI and the documentation, but that could also be considered an upside (less redundant information). The only thing that doesn't seem to work with aliasing is that schemars doesn't support it.
The text was updated successfully, but these errors were encountered:
The
extend-ignore
andextend-unfixable
options are documented as deprecated but they're still widely used. @charliermarsh argues that he would add the settings if they didn't exist today (for flake8 compact?).We should either formally deprecate the CLI options (the configuration options have been deprecated for a while) or un-deprecate the settings.
We could consider defining
extend-unfixable
as an alias forunfixable
andextend-ignore
forignore
. Bothserde
andclap
support aliasing. The downside would be that the options don't show up in the CLI and the documentation, but that could also be considered an upside (less redundant information). The only thing that doesn't seem to work with aliasing is thatschemars
doesn't support it.The text was updated successfully, but these errors were encountered: