Fix formatting

This commit is contained in:
Mohsen Azimi 2017-02-13 18:31:50 -08:00 committed by GitHub
parent 776c6c4237
commit 43bd355adf
1 changed files with 64 additions and 44 deletions

View File

@ -569,20 +569,32 @@
}, },
"exclude": { "exclude": {
"allOf": [ "allOf": [
{"$ref": "#/definitions/ruleSet-condition"}, {
{"absolutePath": true} "$ref": "#/definitions/ruleSet-condition"
},
{
"absolutePath": true
}
] ]
}, },
"include": { "include": {
"allOf": [ "allOf": [
{"$ref": "#/definitions/ruleSet-condition"}, {
{"absolutePath": true} "$ref": "#/definitions/ruleSet-condition"
},
{
"absolutePath": true
}
] ]
}, },
"issuer": { "issuer": {
"allOf": [ "allOf": [
{"$ref": "#/definitions/ruleSet-condition"}, {
{"absolutePath": true} "$ref": "#/definitions/ruleSet-condition"
},
{
"absolutePath": true
}
] ]
}, },
"loader": { "loader": {
@ -613,8 +625,12 @@
}, },
"resource": { "resource": {
"allOf": [ "allOf": [
{"$ref": "#/definitions/ruleSet-condition"}, {
{"absolutePath": true} "$ref": "#/definitions/ruleSet-condition"
},
{
"absolutePath": true
}
] ]
}, },
"resourceQuery": { "resourceQuery": {
@ -625,8 +641,12 @@
}, },
"test": { "test": {
"allOf": [ "allOf": [
{"$ref": "#/definitions/ruleSet-condition"}, {
{"absolutePath": true} "$ref": "#/definitions/ruleSet-condition"
},
{
"absolutePath": true
}
] ]
}, },
"use": { "use": {
@ -876,72 +896,72 @@
"type": "object", "type": "object",
"properties": { "properties": {
"context": { "context": {
"type": "string", "type": "string",
"description": "context directory for request shortening" "description": "context directory for request shortening"
}, },
"hash": { "hash": {
"type": "boolean", "type": "boolean",
"description": "add the hash of the compilation" "description": "add the hash of the compilation"
}, },
"version": { "version": {
"type": "boolean", "type": "boolean",
"description": "add webpack version information" "description": "add webpack version information"
}, },
"timings": { "timings": {
"type": "boolean", "type": "boolean",
"description": "add timing information" "description": "add timing information"
}, },
"assets": { "assets": {
"type": "boolean", "type": "boolean",
"description": "add assets information" "description": "add assets information"
}, },
"chunks": { "chunks": {
"type": "boolean", "type": "boolean",
"description": "add chunk information" "description": "add chunk information"
}, },
"chunkModules": { "chunkModules": {
"type": "boolean", "type": "boolean",
"description": "add built modules information to chunk information" "description": "add built modules information to chunk information"
}, },
"modules": { "modules": {
"type": "boolean", "type": "boolean",
"description": "add built modules information" "description": "add built modules information"
}, },
"children": { "children": {
"type": "boolean", "type": "boolean",
"description": "add children information" "description": "add children information"
}, },
"cached": { "cached": {
"type": "boolean", "type": "boolean",
"description": "add also information about cached (not built) modules" "description": "add also information about cached (not built) modules"
}, },
"reasons": { "reasons": {
"type": "boolean", "type": "boolean",
"description": "add information about the reasons why modules are included" "description": "add information about the reasons why modules are included"
}, },
"source": { "source": {
"type": "boolean", "type": "boolean",
"description": "add the source code of modules" "description": "add the source code of modules"
}, },
"errorDetails": { "errorDetails": {
"type": "boolean", "type": "boolean",
"description": "add details to errors (like resolving log)" "description": "add details to errors (like resolving log)"
}, },
"chunkOrigins": { "chunkOrigins": {
"type": "boolean", "type": "boolean",
"description": "add the origins of chunks and chunk merging info" "description": "add the origins of chunks and chunk merging info"
}, },
"modulesSort": { "modulesSort": {
"type": "string", "type": "string",
"description": "sort the modules by that field" "description": "sort the modules by that field"
}, },
"chunksSort": { "chunksSort": {
"type": "string", "type": "string",
"description": "sort the chunks by that field" "description": "sort the chunks by that field"
}, },
"assetsSort": { "assetsSort": {
"type": "string", "type": "string",
"description": "sort the assets by that field" "description": "sort the assets by that field"
} }
} }
}, },