From 5af5e2f10639d4aa9633fe767f0cd12cdc6c4759 Mon Sep 17 00:00:00 2001 From: Louis des Landes Date: Mon, 6 Mar 2017 16:02:35 +1100 Subject: [PATCH] Update filetypes schema to require leading period. --- src/schemas/optionsSchema.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/schemas/optionsSchema.json b/src/schemas/optionsSchema.json index 10588e0..8b43606 100644 --- a/src/schemas/optionsSchema.json +++ b/src/schemas/optionsSchema.json @@ -5,11 +5,12 @@ "type": "string" }, "filetypes": { - "patternGroups": { - ".*": { + "patternProperties": { + "\\..*": { "type": "string" } }, + "additionalProperties": false, "type": "object" }, "generateScopedName": {