schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
project-1.0.0-rc1.json | resource | Glob pattern to specify files to include as resources. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ] | {"type": ["string", "array"], "items": {"type": "string"}, "default": ["compiler/resources/**/*", "**/*.resx"]} |
project-1.0.0-rc1.json | resourceExclude | Glob pattern to specify files to exclude from the resources list. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ] | {"type": ["string", "array"], "items": {"type": "string"}} |
project-1.0.0-rc1.json | resourceFiles | Files to include as resources (overrides 'resourceExclude'). (data type: string or array). Example: [ "Folder1/File1.ext", "Folder2/File2.ext" ] | {"type": ["string", "array"], "items": {"type": "string"}} |
project-1.0.0-rc1.json | shared | Glob pattern to specify files to share with dependent projects. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ] | {"type": ["string", "array"], "items": {"type": "string"}, "default": "compiler/shared/**/*.cs"} |
project-1.0.0-rc1.json | sharedExclude | Glob pattern to specify files to exclude from sharing with dependent projects. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ] | {"type": ["string", "array"], "items": {"type": "string"}} |
project-1.0.0-rc1.json | sharedFiles | Files to include for sharing with dependent projects (overrides 'sharedExclude'). (data type: string or array). Example: [ "Folder1/File1.ext", "Folder2/File2.ext" ] | {"type": ["string", "array"], "items": {"type": "string"}} |
project-1.0.0-rc1.json | exclude | Glob pattern to indicate files to exclude from other glob patterns, in addition to the default patterns specified in 'excludeBuiltIn'. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ] | {"type": ["string", "array"], "items": {"type": "string"}} |
project-1.0.0-rc1.json | excludeBuiltIn | Default glob pattern to indicate files to exclude from other glob patterns. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ] | {"type": ["string", "array"], "items": {"type": "string"}, "default": ["bin/**", "obj/**", "**/*.xproj"]} |
project-1.0.0-rc1.json | configurations | Configurations are named groups of compilation settings. There are two defaults built into the runtime: 'Debug' and 'Release'. | {"type": "object", "additionalProperties": {"type": "object", "properties": {"compilationOptions": {}}}} |
project-1.0.0-rc1.json | copyright | Copyright details for the package. | {"type": "string"} |
project-1.0.0-rc1.json | iconUrl | A URL for the image to use as the icon for the package. This should be a 32x32-pixel .png file that has a transparent background. | {"type": "string"} |
project-1.0.0-rc1.json | licenseUrl | A link to the license for the package. | {"type": "string"} |
project-1.0.0-rc1.json | requireLicenseAcceptance | A Boolean value that specifies whether the client needs to ensure that the package license (described by licenseUrl) is accepted before the package is installed. | {"type": "boolean", "default": false} |
project-1.0.0-rc1.json | projectUrl | A URL for the home page of the package. | {"type": "string"} |
project-1.0.0-rc1.json | summary | A short description of the package. | {"type": "string"} |
project-1.0.0-rc1.json | tags | A space-delimited list of tags and keywords that describe the package. | {"type": "array", "uniqueItems": true, "items": {"type": "string"}} |
project-1.0.0-rc1.json | title | The human-friendly title of the package | {"type": "string"} |
project-1.0.0-rc1.json | releaseNotes | A description of the changes made in each release of the package. | {"type": "string"} |
project-1.0.0-rc1.json | language | The locale ID for the package, such as en-us. | {"type": "string"} |
project-1.0.0-rc1.json | description | The description of the project/package. | {"type": "string"} |
project-1.0.0-rc1.json | namedResource | Overrides the generated resource names with custom ones. | {"type": "object", "additionalProperties": {"type": "string"}} |
project-1.0.0-rc1.json | repository | Contains information about the repository where the project is stored. | {"type": "object", "properties": {"type": {"type": "string", "enum": ["git"], "default": "git"}, "url": {"type": "string", "format": "uri"}}, "additionalProperties": {"type": "string"}} |
project-1.0.0-rc1.json | scripts | Scripts to execute during the various stages. | {"type": "object", "properties": {"prebuild": {}, "postbuild": {}, "prepack": {}, "postpack": {}, "prepublish": {}, "postpublish": {}, "prerestore": {}, "postrestore": {}, "prepare": {}}} |
project-1.0.0-rc1.json | version | The version of the project/package. Examples: 1.2.3, 1.2.3-beta, 1.2.3-* | {"type": "string"} |
sponge-mixins.json | mixin_class | The dot-separated path to the mixin class relative to the specified package. The class must be annotated with @Mixin | {"type": "string"} |
sponge-mixins.json | injector_options | Injection options | {"type": "object", "properties": {"defaultRequire": {"type": "integer", "minimum": 0, "default": 0}, "defaultGroup": {"type": "string", "default": "default"}, "injectionPoints": {"type": "array", "items": {"type": "string"}}, "maxShiftBy": {"type": "integer", "minimum": 0, "maximum": 5, "default": 5}}} |
sponge-mixins.json | defaultRequire | Sets the default minimum of injections that must be successfully applied per injector | {"type": "integer", "minimum": 0, "default": 0} |
sponge-mixins.json | defaultGroup | Sets the default injector group | {"type": "string", "default": "default"} |
sponge-mixins.json | injectionPoints | Registers injection points for this configuration | {"type": "array", "items": {"type": "string"}} |
sponge-mixins.json | maxShiftBy | Sets the maximum allowed number of opcodes that can be shifted in @At annotations. This is hard capped at 5 | {"type": "integer", "minimum": 0, "maximum": 5, "default": 5} |
sponge-mixins.json | overwrite_options | Overwrite options | {"type": "object", "properties": {"conformVisibility": {"type": "boolean"}, "requireAnnotations": {"type": "boolean", "default": true}}} |
sponge-mixins.json | conformVisibility | Sets whether the visibility of overwritten methods should be conformed to the target class | {"type": "boolean"} |
sponge-mixins.json | requireAnnotations | Sets whether overwriting methods must explicitly be declared through @Overwrite annotations | {"type": "boolean", "default": true} |
sponge-mixins.json | parent | The name of a parent configuration that options get inherited from | {"type": "string"} |
sponge-mixins.json | target | Target selector. Either the specifies the phase directly or use "@env(PHASE)" separated by '&', '\', or ' ' | {"type": "string"} |
sponge-mixins.json | minVersion | Minimum version of the mixin subsystem required for this configuration | {"type": "string", "pattern": "^(\\d{1,5})(?:\\.(\\d{1,5})(?:\\.(\\d{1,5})(?:\\.(\\d{1,5}))?)?)?(-[a-zA-Z0-9_\\-]+)?$"} |
sponge-mixins.json | compatibilityLevel | Minimum compatibility level required for mixins in this set | {"type": "string"} |
sponge-mixins.json | required | Determines whether mixin failures in this configuration are considered terminal and stop the game | {"type": "boolean"} |
sponge-mixins.json | priority | The priority of this configuration. Will be inherited if smaller than 0 | {"type": "integer", "default": -1} |
sponge-mixins.json | mixinPriority | Default mixin priority for this configuration. Will be inherited if smaller than 0 | {"type": "integer", "default": -1} |
sponge-mixins.json | package | The target package where the mixin classes reside | {"type": "string"} |
sponge-mixins.json | mixins | Mixin classes to load in all environments. Class names get prepended with the specified package | {"type": "array", "items": {}} |
sponge-mixins.json | client | Mixin classes to load ONLY on client. Class names get prepended with the specified package | {"type": "array", "items": {}} |
sponge-mixins.json | server | Mixin classes to load ONLY on server. Class names get prepended with the specified package | {"type": "array", "items": {}} |
sponge-mixins.json | setSourceFile | Sets whether targets' source files will be updated to the mixin source file | {"type": "boolean"} |
sponge-mixins.json | refmap | The path to the reference map resource to use for this configuration | {"type": "string"} |
sponge-mixins.json | verbose | Increases log detail level from DEBUG to INFO | {"type": "boolean", "default": false} |
sponge-mixins.json | plugin | Name of the mixin config plugin to use for this config | {"type": "string"} |
jshintrc.json | bitwise | Prohibit the use of bitwise operators (&, |, ^, etc.) | {"type": "boolean", "default": false} |
jshintrc.json | curly | Requires you to always put curly braces around blocks in loops and conditionals | {"type": "boolean", "default": false} |
jshintrc.json | eqeqeq | Prohibits the use of `==` and `!=` in favor of `===` and `!==` | {"type": "boolean", "default": false} |
jshintrc.json | esversion | The ECMAScript version to which the code must adhere | {"type": "integer", "default": 5, "enum": [3, 5, 6, 7, 8, 9, 10, 11]} |
jshintrc.json | forin | Requires all `for in` loops to filter object's items with obj.hasOwnProperty() | {"type": "boolean", "default": false} |
jshintrc.json | freeze | Prohibits overwriting prototypes of native objects such as Array, Date and so on | {"type": "boolean", "default": false} |
jshintrc.json | funcscope | Suppresses warnings about declaring variables inside of control structures while accessing them later from the outside | {"type": "boolean", "default": false} |
jshintrc.json | futurehostile | Enables warnings about the use of identifiers which are defined in future versions of JavaScript | {"type": "boolean", "default": false} |
jshintrc.json | iterator | Suppresses warnings about the __iterator__ property. | {"type": "boolean", "default": false} |
jshintrc.json | latedef | Prohibits the use of a variable before it was defined | {"enum": [true, false, "nofunc"], "default": false} |
jshintrc.json | leanswitch | Prohibits unnecessary clauses within `switch` statements | {"type": "boolean", "default": false} |
jshintrc.json | maxcomplexity | Max cyclomatic complexity per function | {"type": ["boolean", "integer"], "default": false} |
jshintrc.json | maxdepth | Max depth of nested blocks | {"type": ["boolean", "integer"], "default": false} |
jshintrc.json | maxerr | Maximum amount of warnings JSHint will produce before giving up | {"type": "integer", "default": 50} |
jshintrc.json | maxparams | Max number of formal parameters allowed per function | {"type": ["boolean", "integer"]} |
jshintrc.json | maxstatements | Max number statements per function | {"type": ["boolean", "integer"], "default": false} |
jshintrc.json | noarg | Prohibits the use of `arguments.caller` and `arguments.callee` | {"type": "boolean", "default": false} |
jshintrc.json | nocomma | Prohibits the use of the comma operator | {"type": "boolean", "default": false} |
jshintrc.json | nonbsp | Warns about `non-breaking whitespace` characters | {"type": "boolean", "default": false} |
jshintrc.json | nonew | Prohibits the use of constructors for side-effects (without assignment) | {"type": "boolean", "default": false} |
jshintrc.json | notypeof | Suppresses warnings about invalid `typeof`operator values | {"type": "boolean", "default": false} |
jshintrc.json | noreturnawait | Async functions resolve on their return value. In most cases, this makes returning the result of an AwaitExpression (which is itself a Promise instance) unnecessary | {"type": "boolean", "default": false} |
jshintrc.json | regexpu | Enables warnings for regular expressions which do not include the 'u' flag | {"type": "boolean", "default": false} |
jshintrc.json | shadow | Suppresses warnings about variable shadowing. i.e. declaring a variable that had been already declared somewhere in the outer scope | {"type": ["boolean", "string"], "default": false, "enum": [true, false, "inner", "outer"]} |
jshintrc.json | singleGroups | Prohibits the use of the grouping operator when it is not strictly required. | {"type": "boolean", "default": false} |
jshintrc.json | strict | Requires all code to run in ES5 strict mode | {"type": ["boolean", "string"], "default": false, "enum": [true, false, "implied", "global", "func"]} |
jshintrc.json | trailingcomma | Warns when a comma is not placed after the last element in an array or object literal | {"type": "boolean", "default": false} |
jshintrc.json | undef | Prohibits the use of explicitly undeclared variables | {"type": "boolean", "default": false} |
jshintrc.json | unused | Warns when you define and never use your variables | {"type": ["boolean", "string"], "default": false, "enum": [true, false, "vars", "strict"]} |
jshintrc.json | varstmt | Forbids the use of VariableStatements (`var`) in favor of `let` and `const` | {"type": "boolean", "default": false} |
jshintrc.json | asi | Suppresses warnings about missing semicolons | {"type": "boolean", "default": false} |
jshintrc.json | boss | Suppresses warnings about the use of assignments in cases where comparisons are expected | {"type": "boolean", "default": false} |
jshintrc.json | debug | Suppresses warnings about the `debugger` statements in your code | {"type": "boolean", "default": false} |
jshintrc.json | elision | Tells JSHint that your code uses ES3 array elision elements, or empty elements | {"type": "boolean", "default": false} |
jshintrc.json | eqnull | Suppresses warnings about `== null` comparisons | {"type": "boolean", "default": false} |
jshintrc.json | evil | Suppresses warnings about the use of `eval` | {"type": "boolean", "default": false} |
jshintrc.json | expr | Suppresses warnings about the use of expressions where normally you would expect to see assignments or function calls | {"type": "boolean", "default": false} |
jshintrc.json | lastsemic | Suppresses warnings about missing semicolons, but only when the semicolon is omitted for the last statement in a one-line block | {"type": "boolean", "default": false} |
jshintrc.json | loopfunc | Suppresses warnings about functions inside of loops | {"type": "boolean", "default": false} |
jshintrc.json | moz | Tells JSHint that your code uses Mozilla JavaScript extensions | {"type": "boolean", "default": false} |
jshintrc.json | noyield | Suppresses warnings about generator functions with no `yield` statement in them | {"type": "boolean", "default": false} |
jshintrc.json | plusplus | Prohibits the use of `++` and `--` | {"type": "boolean", "default": false} |
jshintrc.json | proto | Suppresses warnings about the `__proto__` property | {"type": "boolean", "default": false} |
jshintrc.json | scripturl | Suppresses warnings about the use of script-targeted URLs | {"type": "boolean", "default": false} |
jshintrc.json | supernew | Suppresses warnings about constructions like `new function () { ... };` and `new Object;` | {"type": "boolean", "default": false} |
jshintrc.json | validthis | Suppresses warnings about possible strict violations when the code is running in strict mode and you use `this` in a non-constructor function | {"type": "boolean", "default": false} |
jshintrc.json | withstmt | Suppresses warnings about the use of the `with` statement | {"type": "boolean", "default": false} |
jshintrc.json | browser | [Environment] Web Browser (window, document, etc) | {"type": "boolean", "default": false} |
jshintrc.json | browserify | [Environment] Browserify | {"type": "boolean", "default": false} |
jshintrc.json | couch | [Environment] CouchDB | {"type": "boolean", "default": false} |
jshintrc.json | devel | [Environment] Development/debugging (alert, confirm, etc) | {"type": "boolean", "default": false} |
jshintrc.json | dojo | [Environment] Dojo Toolkit | {"type": "boolean", "default": false} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.