Unnamed repository; edit this file 'description' to name the repository.
fix: update F# comment tokens to also support Doc comments (#15741)
| -rw-r--r-- | languages.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index b2d36cfc..9de6c04e 100644 --- a/languages.toml +++ b/languages.toml @@ -3868,7 +3868,7 @@ scope = "source.fs" roots = ["*.slnx", "*.sln", "*.fsproj"] injection-regex = "fsharp" file-types = ["fs", "fsx", "fsi", "fsscript"] -comment-token = "//" +comment-tokens = ["//", "///"] block-comment-tokens = { start = "(*", end = "*)" } indent = { tab-width = 4, unit = " " } auto-format = true |