From 654d9767c567a785dabbc13d5d7fc899ad8256b6 Mon Sep 17 00:00:00 2001 From: Kris De Volder Date: Mon, 4 Feb 2019 12:37:19 -0800 Subject: [PATCH] vscode-spring-boot treats `.yaml` same as `.yml` --- vscode-extensions/vscode-spring-boot/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vscode-extensions/vscode-spring-boot/package.json b/vscode-extensions/vscode-spring-boot/package.json index afc2fc152..e615bb4e3 100644 --- a/vscode-extensions/vscode-spring-boot/package.json +++ b/vscode-extensions/vscode-spring-boot/package.json @@ -42,8 +42,8 @@ "Spring Boot Properties Yaml" ], "filenamePatterns": [ - "application*.yml", - "bootstrap*.yml" + "application*.yml", "applicication*.yaml", + "bootstrap*.yml", "bootstrap*.yaml" ], "configuration": "./yaml-support/language-configuration.json" }, @@ -54,7 +54,7 @@ ], "filenamePatterns": [ "application*.properties", - "bootstrap*.yml" + "bootstrap*.properties" ], "configuration": "./properties-support/language-configuration.json" }