This repository has been archived by the owner on Mar 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: adding information about default configuration
- Loading branch information
Showing
4 changed files
with
74 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modules/* | ||
*tags* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"properties": { | ||
"reason.codelens.unicode": { | ||
"type": "boolean", | ||
"default": true, | ||
"description": "Enable the use of unicode symbols in codelens." | ||
}, | ||
"reason.server.languages": { | ||
"type": "array", | ||
"items": { | ||
"enum": [ | ||
"reason" | ||
] | ||
}, | ||
"default": [ | ||
"reason" | ||
], | ||
"maxItems": 1, | ||
"uniqueItems": true, | ||
"description": "The list of languages enable support for in the language server." | ||
}, | ||
"reason.debounce.linter": { | ||
"type": "integer", | ||
"default": 500, | ||
"description": "How long to idle (in milliseconds) after keypresses before refreshing linter diagnostics. Smaller values refresh diagnostics more quickly." | ||
}, | ||
"reason.path.ocamlfind": { | ||
"type": "string", | ||
"default": "ocamlfind", | ||
"description": "The path to the `ocamlfind` binary." | ||
}, | ||
"reason.path.ocamlmerlin": { | ||
"type": "string", | ||
"default": "ocamlmerlin", | ||
"description": "The path to the `ocamlmerlin` binary." | ||
}, | ||
"reason.path.opam": { | ||
"type": "string", | ||
"default": "opam", | ||
"description": "The path to the `opam` binary." | ||
}, | ||
"reason.path.rebuild": { | ||
"type": "string", | ||
"default": "rebuild", | ||
"description": "The path to the `rebuild` binary." | ||
}, | ||
"reason.path.refmt": { | ||
"type": "string", | ||
"default": "refmt", | ||
"description": "The path to the `refmt` binary." | ||
}, | ||
"reason.path.refmterr": { | ||
"type": "string", | ||
"default": "refmterr", | ||
"description": "The path to the `refmterr` binary." | ||
}, | ||
"reason.path.rtop": { | ||
"type": "string", | ||
"default": "rtop", | ||
"description": "The path to the `rtop` binary." | ||
} | ||
} | ||
} |