Lints and suggestions for the Nix programming language
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: rm unused fn lint

+1 -6
+1 -6
bin/src/lint.rs
··· 1 - use crate::{LintMap, utils}; 1 + use crate::LintMap; 2 2 3 3 use lib::Report; 4 4 use rnix::{Root, WalkEvent}; ··· 37 37 .collect(); 38 38 39 39 LintResult { file_id, reports } 40 - } 41 - 42 - #[must_use] 43 - pub fn lint(vfs_entry: &VfsEntry) -> LintResult { 44 - lint_with(vfs_entry, &utils::lint_map()) 45 40 } 46 41 47 42 pub mod main {