foxguard 0.12.0

A security scanner as fast as a linter, written in Rust. 200+ built-in rules across 12 source languages.
Documentation
1
2
3
4
5
module Safe where

firstItem :: [Int] -> Maybe Int
firstItem [] = Nothing
firstItem (x : _) = Just x