Match `.hs-boot` files to Haskell (#4800)

Haskell source files are now either `.hs` (as before) or `.hs-boot`, which is a type of Haskell file that only contains type declarations (https://downloads.haskell.org/ghc/latest/docs/users_guide/separate_compilation.html#how-to-compile-mutually-recursive-modules)
pull/1/head
Ollie Charles 2 years ago committed by GitHub
parent 58e7e1c5e3
commit eada6d534e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -732,7 +732,7 @@ source = { git = "https://github.com/ikatyang/tree-sitter-yaml", rev = "0e36bed1
name = "haskell"
scope = "source.haskell"
injection-regex = "haskell"
file-types = ["hs"]
file-types = ["hs", "hs-boot"]
roots = ["Setup.hs", "stack.yaml", "*.cabal"]
comment-token = "--"
language-server = { command = "haskell-language-server-wrapper", args = ["--lsp"] }

Loading…
Cancel
Save