Skip to content

Commit

Permalink
1.0.1 release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
PranayAgarwal committed Jul 27, 2018
1 parent 7abec47 commit a0c04be
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

See the full list of recent releases and features added on the [Github releases page](https://github.com/PranayAgarwal/vscode-hack/releases).

## v1.0.1 - 2018-07-26
- Add automatic LSP request tracing via new `hack.tracing.server` config option (thanks [@auchenberg](https://github.com/auchenberg)!)

## v1.0.0 - 2018-07-19
- **Integration with HHAST Linter** (thanks [@fredemmott](https://github.com/fredemmott)!). The extension now supports Hack linting and autofixing via [HHAST](https://github.com/hhvm/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 extension Configuration section.
- Type coverage now uses the language server
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-hack",
"version": "1.0.0",
"version": "1.0.1",
"publisher": "pranayagarwal",
"engines": {
"vscode": "^1.25.0"
Expand Down Expand Up @@ -212,15 +212,21 @@
},
"hack.hhastLintMode": {
"type": "string",
"enum": ["whole-project", "open-files"],
"enum": [
"whole-project",
"open-files"
],
"default": null,
"description": "Whether to lint the whole project, or just open files"
},
"hack.rememberedWorkspaces": {
"type": "object",
"additionalProperties": {
"type": "string",
"enum": ["trusted", "untrusted"]
"enum": [
"trusted",
"untrusted"
]
},
"default": {},
"description": "Workspaces where whether or not to run custom Hack executables (e.g. hhast-lint) has been remembered"
Expand Down

0 comments on commit a0c04be

Please sign in to comment.