We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ruff format supports # fmt: off, # fmt: on and # fmt: skip pragma comments to selectively disable the formatter. (https://docs.astral.sh/ruff/formatter/#format-suppression)
ruff format
# fmt: off
# fmt: on
# fmt: skip
It'd be neat if air supported a similar system for selective disabling formatting, which might look like this:
air
# fmt: off private$event_callback_counts[[domain]] <- private$event_callback_counts[[domain]] - 1 # fmt: on private$event_callback_counts[[domain]] <- private$event_callback_counts[[domain]] + 1 # fmt: skip
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ruff format
supports# fmt: off
,# fmt: on
and# fmt: skip
pragma comments to selectively disable the formatter. (https://docs.astral.sh/ruff/formatter/#format-suppression)It'd be neat if
air
supported a similar system for selective disabling formatting, which might look like this:The text was updated successfully, but these errors were encountered: