From 43bd355adf398cb6d330e5b7cd4b11e93d245159 Mon Sep 17 00:00:00 2001 From: Mohsen Azimi Date: Mon, 13 Feb 2017 18:31:50 -0800 Subject: [PATCH] Fix formatting --- schemas/webpackOptionsSchema.json | 108 ++++++++++++++++++------------ 1 file changed, 64 insertions(+), 44 deletions(-) diff --git a/schemas/webpackOptionsSchema.json b/schemas/webpackOptionsSchema.json index 86f3c2441..9dde44f23 100644 --- a/schemas/webpackOptionsSchema.json +++ b/schemas/webpackOptionsSchema.json @@ -569,20 +569,32 @@ }, "exclude": { "allOf": [ - {"$ref": "#/definitions/ruleSet-condition"}, - {"absolutePath": true} + { + "$ref": "#/definitions/ruleSet-condition" + }, + { + "absolutePath": true + } ] }, "include": { "allOf": [ - {"$ref": "#/definitions/ruleSet-condition"}, - {"absolutePath": true} + { + "$ref": "#/definitions/ruleSet-condition" + }, + { + "absolutePath": true + } ] }, "issuer": { "allOf": [ - {"$ref": "#/definitions/ruleSet-condition"}, - {"absolutePath": true} + { + "$ref": "#/definitions/ruleSet-condition" + }, + { + "absolutePath": true + } ] }, "loader": { @@ -613,8 +625,12 @@ }, "resource": { "allOf": [ - {"$ref": "#/definitions/ruleSet-condition"}, - {"absolutePath": true} + { + "$ref": "#/definitions/ruleSet-condition" + }, + { + "absolutePath": true + } ] }, "resourceQuery": { @@ -625,8 +641,12 @@ }, "test": { "allOf": [ - {"$ref": "#/definitions/ruleSet-condition"}, - {"absolutePath": true} + { + "$ref": "#/definitions/ruleSet-condition" + }, + { + "absolutePath": true + } ] }, "use": { @@ -876,72 +896,72 @@ "type": "object", "properties": { "context": { - "type": "string", - "description": "context directory for request shortening" + "type": "string", + "description": "context directory for request shortening" }, "hash": { - "type": "boolean", - "description": "add the hash of the compilation" + "type": "boolean", + "description": "add the hash of the compilation" }, "version": { - "type": "boolean", - "description": "add webpack version information" + "type": "boolean", + "description": "add webpack version information" }, "timings": { - "type": "boolean", - "description": "add timing information" + "type": "boolean", + "description": "add timing information" }, "assets": { - "type": "boolean", - "description": "add assets information" + "type": "boolean", + "description": "add assets information" }, "chunks": { - "type": "boolean", - "description": "add chunk information" + "type": "boolean", + "description": "add chunk information" }, "chunkModules": { - "type": "boolean", - "description": "add built modules information to chunk information" + "type": "boolean", + "description": "add built modules information to chunk information" }, "modules": { - "type": "boolean", - "description": "add built modules information" + "type": "boolean", + "description": "add built modules information" }, "children": { - "type": "boolean", - "description": "add children information" + "type": "boolean", + "description": "add children information" }, "cached": { - "type": "boolean", - "description": "add also information about cached (not built) modules" + "type": "boolean", + "description": "add also information about cached (not built) modules" }, "reasons": { - "type": "boolean", - "description": "add information about the reasons why modules are included" + "type": "boolean", + "description": "add information about the reasons why modules are included" }, "source": { - "type": "boolean", - "description": "add the source code of modules" + "type": "boolean", + "description": "add the source code of modules" }, "errorDetails": { - "type": "boolean", - "description": "add details to errors (like resolving log)" + "type": "boolean", + "description": "add details to errors (like resolving log)" }, "chunkOrigins": { - "type": "boolean", - "description": "add the origins of chunks and chunk merging info" + "type": "boolean", + "description": "add the origins of chunks and chunk merging info" }, "modulesSort": { - "type": "string", - "description": "sort the modules by that field" + "type": "string", + "description": "sort the modules by that field" }, "chunksSort": { - "type": "string", - "description": "sort the chunks by that field" + "type": "string", + "description": "sort the chunks by that field" }, "assetsSort": { - "type": "string", - "description": "sort the assets by that field" + "type": "string", + "description": "sort the assets by that field" } } },