From 9358d513f85cc33fd1c3d217691affbfe94dbe23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C4=83t=C4=83lin=20Mari=C8=99?= Date: Wed, 22 Jun 2016 21:20:41 +0300 Subject: [PATCH] Treat `.webmanifest` files as JSON MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Web App Manifest files (having `webmanifest`¹ as the recommended file extension and `application/manifest+json`¹ as the recommended media type) use the JSON² format. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ¹ https://w3c.github.io/manifest/#media-type-registration ² https://w3c.github.io/manifest/#abstract See also: https://w3c.github.io/manifest/ --- extensions/json/package.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/extensions/json/package.json b/extensions/json/package.json index cca25933dc6fe..a8a1186ec8739 100644 --- a/extensions/json/package.json +++ b/extensions/json/package.json @@ -28,10 +28,12 @@ ".jshintrc", ".jscsrc", ".eslintrc", - ".babelrc" + ".babelrc", + ".webmanifest" ], "mimetypes": [ - "application/json" + "application/json", + "application/manifest+json" ], "configuration": "./json.configuration.json" } @@ -131,4 +133,4 @@ "vscode-languageclient": "^2.2.1", "vscode-extension-telemetry": "^0.0.5" } -} \ No newline at end of file +}