forge_lint/sol/gas/
mod.rs

1use crate::sol::{EarlyLintPass, LateLintPass, SolLint};
2
3mod custom_errors;
4mod keccak;
5use custom_errors::CUSTOM_ERRORS;
6use keccak::ASM_KECCAK256;
7
8register_lints!((CustomErrors, early, (CUSTOM_ERRORS)), (AsmKeccak256, late, (ASM_KECCAK256)));