bevy_lint

Module groups

Source
Expand description

Lint groups that can be toggled together.

Each lint is organized within a specific category, such as PERFORMANCE or STYLE. The following groups are enabled by default:

The following groups are disabled by default:

Staticsยง

  • A group that offers suggestions on how to simplify your code.
  • A group of deny-by-default lints that check for outright wrong or useless code.
  • A group of unstable lints that may be removed at any time for any reason.
  • A group of lints that make the linter incredibly nit-picky.
  • A group that suggests how to increase the performance of your code.
  • A group of opt-in lints that restrict you from writing certain code.
  • A group of lints that encourage idiomatic code.
  • A group similar to CORRECTNESS that checks for suspicious or usually wrong code.