mirror of
https://github.com/koalaman/shellcheck.git
synced 2025-08-08 03:27:30 +08:00
15 lines
299 B
Haskell
15 lines
299 B
Haskell
module ShellCheck.Options where
|
|
|
|
data Shell = Ksh | Sh | Bash
|
|
deriving (Show, Eq)
|
|
|
|
data AnalysisOptions = AnalysisOptions {
|
|
optionShellType :: Maybe Shell,
|
|
optionExcludes :: [Integer]
|
|
}
|
|
|
|
defaultAnalysisOptions = AnalysisOptions {
|
|
optionShellType = Nothing,
|
|
optionExcludes = []
|
|
}
|