Lints and suggestions for the Nix programming language
at main 22 lines 420 B view raw
1use crate::lints; 2 3lints! { 4 bool_comparison, 5 empty_let_in, 6 manual_inherit, 7 manual_inherit_from, 8 legacy_let_syntax, 9 collapsible_let_in, 10 eta_reduction, 11 useless_parens, 12 // unquoted_splice, 13 empty_pattern, 14 redundant_pattern_bind, 15 unquoted_uri, 16 empty_inherit, 17 deprecated_to_path, 18 bool_simplification, 19 useless_has_attr, 20 repeated_keys, 21 empty_list_concat 22}