├── .dir-locals.el ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .hlint.yaml ├── .mailmap ├── CHANGES.md ├── COPYING ├── Cask ├── Makefile ├── README.md ├── flycheck-haskell.el ├── get-cabal-configuration.hs ├── stack-7.10.yaml ├── stack-7.8.yaml ├── stack-8.0.yaml ├── stack-8.2.yaml └── test ├── flycheck-haskell-test.el └── test-data ├── project-with-cabal-file ├── cabal.config ├── cabal.sandbox.config └── flycheck-haskell-test.cabal ├── project-with-package-env ├── .ghc.environment.x86_64-darwin-8.4.3 ├── .ghc.environment.x86_64-linux-8.4.3 ├── dist-newstyle │ └── packagedb │ │ └── ghc-8.4.3 │ │ ├── flycheck-haskell-test-0.1.0.0-inplace.conf │ │ └── package.cache ├── foo.cabal └── lib │ └── .gitkeep ├── project-with-package-yaml └── package.yaml └── project-with-prelude-module ├── Prelude.hs └── foo.cabal /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/.gitignore -------------------------------------------------------------------------------- /.hlint.yaml: -------------------------------------------------------------------------------- 1 | 2 | - ignore: {name: "Use fewer imports"} 3 | -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/.mailmap -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/CHANGES.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/COPYING -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/Cask -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/README.md -------------------------------------------------------------------------------- /flycheck-haskell.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/flycheck-haskell.el -------------------------------------------------------------------------------- /get-cabal-configuration.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/get-cabal-configuration.hs -------------------------------------------------------------------------------- /stack-7.10.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-6.35 2 | require-stack-version: '>= 0.1.8.0' 3 | -------------------------------------------------------------------------------- /stack-7.8.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-2.22 2 | require-stack-version: '>= 0.1.8.0' -------------------------------------------------------------------------------- /stack-8.0.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-9.21 2 | require-stack-version: '>= 0.1.8.0' 3 | -------------------------------------------------------------------------------- /stack-8.2.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-11.22 2 | require-stack-version: '>= 1.5' 3 | -------------------------------------------------------------------------------- /test/flycheck-haskell-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/test/flycheck-haskell-test.el -------------------------------------------------------------------------------- /test/test-data/project-with-cabal-file/cabal.config: -------------------------------------------------------------------------------- 1 | with-compiler: /foo/bar/ghc-7.10 2 | -------------------------------------------------------------------------------- /test/test-data/project-with-cabal-file/cabal.sandbox.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/test/test-data/project-with-cabal-file/cabal.sandbox.config -------------------------------------------------------------------------------- /test/test-data/project-with-cabal-file/flycheck-haskell-test.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/test/test-data/project-with-cabal-file/flycheck-haskell-test.cabal -------------------------------------------------------------------------------- /test/test-data/project-with-package-env/.ghc.environment.x86_64-darwin-8.4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/test/test-data/project-with-package-env/.ghc.environment.x86_64-darwin-8.4.3 -------------------------------------------------------------------------------- /test/test-data/project-with-package-env/.ghc.environment.x86_64-linux-8.4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/test/test-data/project-with-package-env/.ghc.environment.x86_64-linux-8.4.3 -------------------------------------------------------------------------------- /test/test-data/project-with-package-env/dist-newstyle/packagedb/ghc-8.4.3/flycheck-haskell-test-0.1.0.0-inplace.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/test/test-data/project-with-package-env/dist-newstyle/packagedb/ghc-8.4.3/flycheck-haskell-test-0.1.0.0-inplace.conf -------------------------------------------------------------------------------- /test/test-data/project-with-package-env/dist-newstyle/packagedb/ghc-8.4.3/package.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/test/test-data/project-with-package-env/dist-newstyle/packagedb/ghc-8.4.3/package.cache -------------------------------------------------------------------------------- /test/test-data/project-with-package-env/foo.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/test/test-data/project-with-package-env/foo.cabal -------------------------------------------------------------------------------- /test/test-data/project-with-package-env/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test-data/project-with-package-yaml/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/test/test-data/project-with-package-yaml/package.yaml -------------------------------------------------------------------------------- /test/test-data/project-with-prelude-module/Prelude.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/test/test-data/project-with-prelude-module/Prelude.hs -------------------------------------------------------------------------------- /test/test-data/project-with-prelude-module/foo.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flycheck/flycheck-haskell/HEAD/test/test-data/project-with-prelude-module/foo.cabal --------------------------------------------------------------------------------