This extension adds rich Hack language & HHVM support to Visual Studio Code. Visit http://hacklang.org to get started with Hack.
It is published in the Visual Studio Marketplace here. To install, search for "Hack" in the VS Code extensions tab or run the following command (⌘+P): ext install vscode-hack
.
- Integration with HHAST Linter (thanks @fredemmott!). The extension now supports Hack linting and autofixing via HHAST (v3.27.2 or later required). Set up linting for your project by following instructions in the HHAST library, then look at workspace-specific linter settings in the Configuration section below.
- Type coverage now uses the language server
- [Fix] Output panel will no longer automatically steal focus on extension errors
See the full list of releases and features added on the Github releases page as well as the project changelog.
- Type Checking
- Autocomplete
- Hover Hints
- Document Symbol Outline
- Workspace Symbol Search
- Document Formatting
- Go To/Peek Definition
- Find All References
- Hack Coverage Check
- Linting
- Debugger Support
This extension is supported on Linux and Mac OS X 10.10 onwards (see HHVM compatibility). The latest versions of Hack typechecking tools (hh_client
and hh_server
) are required on the local machine. The workspace should have a .hhconfig
file at its root.
This extension adds the following Visual Studio Code settings. These can be set in user preferences (⌘+,) or workspace settings (.vscode/settings.json
).
hack.clientPath
: Absolute path to the hh_client executable. This can be left empty if hh_client is already in your environment $PATH. Adocker exec
command is supported as well.hack.workspaceRootPath
: Absolute path to the workspace root directory. This will be the VS Code workspace root by default, but can be changed if the project is in a subdirectory or mounted in a Docker container.hack.enableCoverageCheck
: Enable calculation of Hack type coverage percentage for every file and display in status bar (default:true
).hack.useLanguageServer
: Start hh_client in Language Server mode. Only works for HHVM version 3.23 and above (default:true
).hack.useHhast
: Enable linting (need HHAST library set up and configured in project) (default:true
).hack.hhastPath
: Use alternate hhast-lint path. Can be abolute or relative to workspace root (default:vendor/bin/hhast-lint
).hack.hhastArgs
: Optional list of arguments passed to hhast-lint executable.hack.hhastLintMode
: Whether to lint the entire project (whole-project
) or just the open files (open-files
).hack.rememberedWorkspaces
: Workspaces where whether or not to run custom Hack executables (e.g. hhast-lint) has been remembered. Note: This config can only be defined in VS Code global (user) settings.
The extension can be used in a contanerized development environment. Simply configure clientPath
to be a docker exec
command and specify a workspaceRootPath
mapping.
E.g. if your container was started using
$ docker run -d -t --name my-hhvm -v /home/user/repos/project:/mnt/project hhvm/hhvm:latest
Configure
"hack.clientPath": "docker exec -i my-hhvm hh_client",
"hack.workspaceRootPath": "/mnt/project"
Please file all bugs, issues, feature requests etc. at the GitHub issues page.
There are lots of ways to help! You can file new bugs and feature requests, or fix a pending one. To contribute to the source code, fork the repository on GitHub and create a pull request. Check out the VS Code extension development guide to get started.
The source code for this extension is hosted at https://github.com/PranayAgarwal/vscode-hack and is available under the MIT license.