Lint index (generated)

This file is produced by cargo run -p sui-clippy-docgen. Do not edit by hand.

See the Lint categories chapter for what each group means.

Lint IDCategoryDefault levelDocumentation
bare_abortsuspiciouswarnabort with a magic numeric code is easy to misuse; prefer named constants or structured errors.
clock_timestampsuspiciouswarnClock reads can be manipulated by validators in tests; on-chain code should treat timestamps as hints, not strong security boundaries.
dynamic_field_accesssecurityallowDynamic field APIs are easy to get wrong; verify key types, ownership, and access control.
empty_public_entrycorrectnessdenyA public entry function with an empty body is almost certainly a mistake or unsafe stub.
git_dep_unpinnedsuspiciouswarnGit dependencies without rev, branch, or tag are not reproducible builds.
missing_move_editionstylewarnMove.toml [package] should declare an edition (for example Move 2024) for consistent tooling and language behavior.
public_fun_transfersecurityallowtransfer::* inside a public fun body widens who may invoke object moves; confirm this matches your capability model.
test_only_in_sourcesnurseryallow#[test_only] in non-test paths is easy to ship accidentally; prefer tests/ modules or #[test_only] only in test-only files.
todo_commentsuspiciouswarnTrack and remove TODO/FIXME markers before release.
tx_context_sendersuspiciouswarnUsing tx_context::sender() can encourage self-transfers; prefer returning objects to callers for PTB composability where appropriate.
wildcard_git_refcorrectnessdenyWildcard rev or branch on a git dependency is almost never intended for production.