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
Currently linting for rust is not supported by rules_lint. Rules_rust can run clippy, the rust linter, but it follows different idioms than rules_lint.
Describe the feature
Utilize the existing aspect from rules_rust to enable running clippy with rules_lint
To run clippy the rules_rust way you would augment your .bazelrc file with
In so doing, we can enable rules_lint users to run clippy without augmenting their .bazelrc and leave requesting the clippy_checks output group to the aspect CLI or other mechanism to run rules_lint
The text was updated successfully, but these errors were encountered:
What is the current behavior?
Currently linting for rust is not supported by rules_lint. Rules_rust can run clippy, the rust linter, but it follows different idioms than rules_lint.
Describe the feature
Utilize the existing aspect from rules_rust to enable running clippy with rules_lint
To run clippy the rules_rust way you would augment your
.bazelrc
file withWe want to create a rules_lint shapped aspect that can be configured by
In so doing, we can enable rules_lint users to run clippy without augmenting their
.bazelrc
and leave requesting theclippy_checks
output group to the aspect CLI or other mechanism to run rules_lintThe text was updated successfully, but these errors were encountered: