gitextract_k_64siyw/ ├── .dockerignore ├── .ghci ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ └── build.yml ├── .github_deploy ├── .gitignore ├── .multi_arch_docker ├── .prepare_deploy ├── .vscode/ │ └── extensions.json ├── CHANGELOG.md ├── Dockerfile.multi-arch ├── LICENSE ├── README.md ├── ShellCheck.cabal ├── builders/ │ ├── README.md │ ├── build_builder │ ├── darwin.aarch64/ │ │ ├── Dockerfile │ │ ├── build │ │ └── tag │ ├── darwin.x86_64/ │ │ ├── Dockerfile │ │ ├── build │ │ └── tag │ ├── linux.aarch64/ │ │ ├── Dockerfile │ │ ├── build │ │ └── tag │ ├── linux.armv6hf/ │ │ ├── Dockerfile │ │ ├── build │ │ ├── scutil │ │ └── tag │ ├── linux.riscv64/ │ │ ├── Dockerfile │ │ ├── build │ │ └── tag │ ├── linux.x86_64/ │ │ ├── Dockerfile │ │ ├── build │ │ └── tag │ ├── run_builder │ └── windows.x86_64/ │ ├── Dockerfile │ ├── build │ └── tag ├── manpage ├── nextnumber ├── quickrun ├── quicktest ├── setgitversion ├── shellcheck.1.md ├── shellcheck.hs ├── snap/ │ └── snapcraft.yaml ├── src/ │ └── ShellCheck/ │ ├── AST.hs │ ├── ASTLib.hs │ ├── Analytics.hs │ ├── Analyzer.hs │ ├── AnalyzerLib.hs │ ├── CFG.hs │ ├── CFGAnalysis.hs │ ├── Checker.hs │ ├── Checks/ │ │ ├── Commands.hs │ │ ├── ControlFlow.hs │ │ ├── Custom.hs │ │ └── ShellSupport.hs │ ├── Data.hs │ ├── Debug.hs │ ├── Fixer.hs │ ├── Formatter/ │ │ ├── CheckStyle.hs │ │ ├── Diff.hs │ │ ├── Format.hs │ │ ├── GCC.hs │ │ ├── JSON.hs │ │ ├── JSON1.hs │ │ ├── Quiet.hs │ │ └── TTY.hs │ ├── Interface.hs │ ├── Parser.hs │ ├── Prelude.hs │ └── Regex.hs ├── stack.yaml ├── striptests └── test/ ├── buildtest ├── check_release ├── distrotest ├── shellcheck.hs └── stacktest