mirror of
https://github.com/koalaman/shellcheck
synced 2025-07-06 04:51:37 -07:00
14 lines
305 B
Haskell
14 lines
305 B
Haskell
module ShellCheck.Options where
|
|
|
|
data Shell = Ksh | Zsh | Sh | Bash
|
|
deriving (Show, Eq)
|
|
|
|
data AnalysisOptions = AnalysisOptions {
|
|
optionShellType :: Maybe Shell,
|
|
optionExcludes :: [Integer]
|
|
}
|
|
|
|
defaultAnalysisOptions = AnalysisOptions {
|
|
optionShellType = Nothing,
|
|
optionExcludes = []
|
|
}
|