hlint
haskell-language-server
Our great sponsors
hlint | haskell-language-server | |
---|---|---|
3 | 76 | |
1,270 | 2,054 | |
- | 3.1% | |
8.8 | 9.7 | |
3 days ago | 5 days ago | |
Haskell | Haskell | |
BSD 3-clause "New" or "Revised" License | Apache License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
hlint
-
Was simplified subsumption worth it for industry Haskell programmers?
There is an open issue on hlint for it and the situation doesn't seem encouraging for anyone using apply-refact on save for Haskell files.
- create a manage hook on only one workspace
-
Write Rust lints without forking Clippy
may want to look at something like https://github.com/ndmitchell/hlint for inspiration. it can be a little finicky but you can express mildly complicated linting rules
haskell-language-server
-
Monthly Hask Anything (May 2022)
There is work in progress to integrate the REPL into the HLS (basically what provides IDE functionality to vscode): https://github.com/haskell/haskell-language-server/issues/477
-
My GHC dev environment with vscode remote & docker
FROM registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb10:0849567cd9780cc8e9652118b949cb050c632ef4 ARG UID ARG GID RUN \ curl -SsL https://github.com/boxboat/fixuid/releases/download/v0.5.1/fixuid-0.5.1-linux-amd64.tar.gz | sudo tar -C /usr/local/bin -xzf - && \ sudo chown root:root /usr/local/bin/fixuid && \ sudo chmod 4755 /usr/local/bin/fixuid && \ sudo mkdir -p /etc/fixuid && \ printf "user: ghc\ngroup: ghc\n" | sudo tee /etc/fixuid/config.yml USER ${UID}:${GID} RUN fixuid USER ghc RUN \ sudo rm -r \ /etc/fixuid \ /usr/local/bin/fixuid \ /var/run/fixuid.ran ENV PATH=${PATH}:/home/ghc/.cabal/bin:/opt/ghc/9.2.2/bin RUN \ sudo apt update && \ sudo apt install -y \ bash-completion && \ cd /tmp && \ git clone https://github.com/haskell/haskell-language-server.git && \ cd haskell-language-server && \ cabal --project-file=cabal-ghc92.project update && \ cabal --project-file=cabal-ghc92.project install && \ rm -rf /tmp/*
-
This is confusing...
You can you typed holes with HLS, but sometimes there are performance issues: https://github.com/haskell/haskell-language-server/issues/2315
-
[ANN] Pre-release VSCode-Haskell 2.0.0
The major issue is related to Template Haskell. If you use the current HLS releases, you notice the message "This binary is not built with Template Haskell support". We added this message because the way static binaries work is just not cross-plattform. What might work on ubuntu, doesn't reliably work on other distros. This lead to a number of dynamic linking issues, impossible to understand error messages and many more. See for example this: https://github.com/haskell/haskell-language-server/issues/2659
- can you recommend active Haskell open source projects?
-
Now that Stackage supports GHC 9.2, is it easy to build ARM executables on macOS?
The releases page has macOS-9.2.1 but that's Intel, and it has aarch64-1.6.1.0 but that's GHC 8.
-
Configurando ambiente de desenvolvimento haskell no emacs
Podemos baixar haskell-language-server e haskell-language-server-wraper acessando a página abaixo: https://github.com/haskell/haskell-language-server/releases Para descobrir a versão do GCH que está sendo usada, digite a seguinte linha no terminal:
-
[ANN] GHCup 0.1.17.5
The main motivation of this release is making it compatible with the new binary distribution of HLS, which is upcoming soon and will be a dynamically linked distribution. Also see https://github.com/haskell/haskell-language-server/issues/2739.
-
Any of you ever get the feeling that Haskell is just every language?
It’s almost supported in Haskell Language Server now too- follow https://github.com/haskell/haskell-language-server/issues/2732 for it ^^
What are some alternatives?
coc.nvim - Nodejs extension host for vim & neovim, load extensions like VSCode and host language servers.
lsp-mode - Emacs client/library for the Language Server Protocol
neovim - Vim-fork focused on extensibility and usability
vscode-haskell - VS Code extension for Haskell, powered by haskell-language-server
hie-bios - Set up a GHC API session for various Haskell Projects
ormolu - A formatter for Haskell source code
lsp-haskell - lsp-mode :heart: haskell
ghc-proposals - Proposed compiler and language changes for GHC and GHC/Haskell
stack - The Haskell Tool Stack
emacs-which-key - Emacs package that displays available keybindings in popup
xmonad-testing - Stack/cabal setup for testing xmonad* and configurations
vscode-ghc-simple - Simple GHC (Haskell) integration for VSCode