diff options
author | Scott Stevenson | 2023-05-01 14:21:30 +0000 |
---|---|---|
committer | GitHub | 2023-05-01 14:21:30 +0000 |
commit | 015623720cfda031d04bb3628b4a0ad506b3bccf (patch) | |
tree | 39c8dc665b1f8b3293ec8cc691c892f9be93309a | |
parent | d7878238c1a2994f7d467f4bead6660da3f5e8e4 (diff) |
Recognise Jupyter notebooks as JSON documents (#6927)
-rw-r--r-- | languages.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index e4855e90..4e09d54f 100644 --- a/languages.toml +++ b/languages.toml @@ -160,7 +160,7 @@ indent = { tab-width = 2, unit = " " } name = "json" scope = "source.json" injection-regex = "json" -file-types = ["json", "jsonc", "arb"] +file-types = ["json", "jsonc", "arb", "ipynb"] roots = [] language-server = { command = "vscode-json-language-server", args = ["--stdio"] } auto-format = true |