schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
stylelintrc.json
|
media-feature-range-operator-space-after
|
Require a single space or disallow whitespace after the range operator in media features
|
{}
|
stylelintrc.json
|
media-feature-range-operator-space-before
|
Require a single space or disallow whitespace before the range operator in media features
|
{}
|
stylelintrc.json
|
media-query-list-comma-newline-after
|
Require a newline or disallow whitespace after the commas of media query lists
|
{}
|
stylelintrc.json
|
media-query-list-comma-newline-before
|
Require a newline or disallow whitespace before the commas of media query lists
|
{}
|
stylelintrc.json
|
media-query-list-comma-space-after
|
Require a single space or disallow whitespace after the commas of media query lists
|
{}
|
stylelintrc.json
|
media-query-list-comma-space-before
|
Require a single space or disallow whitespace before the commas of media query lists
|
{}
|
stylelintrc.json
|
number-leading-zero
|
Require or disallow a leading zero for fractional numbers less than 1
|
{}
|
stylelintrc.json
|
number-max-precision
|
Limit the number of decimal places allowed in numbers
|
{}
|
stylelintrc.json
|
number-no-trailing-zeros
|
Disallow trailing zeros in numbers
|
{}
|
stylelintrc.json
|
property-blacklist
|
Specify a blacklist of disallowed properties
|
{}
|
stylelintrc.json
|
property-case
|
Specify lowercase or uppercase for properties
|
{}
|
stylelintrc.json
|
property-no-unknown
|
Disallow unknown properties
|
{"type": ["null", "boolean", "array"], "oneOf": [{"type": "null"}, {"type": "boolean", "enum": [true, []]}, {"type": "array", "minItems": 2, "maxItems": 2, "uniqueItems": true, "items": {"type": ["boolean", "object"], "anyOf": [{"type": "boolean", "enum": [true, {}]}, {"type": "object", "allOf": [{}], "properties": {"ignoreProperties": {}, "checkPrefixed": {"type": "boolean"}}}]}}]}
|
stylelintrc.json
|
checkPrefixed
|
If `true`, this rule will check vendor-prefixed properties
|
{"type": "boolean"}
|
stylelintrc.json
|
property-no-vendor-prefix
|
Disallow vendor prefixes for properties
|
{}
|
stylelintrc.json
|
property-whitelist
|
Specify a whitelist of allowed properties
|
{}
|
stylelintrc.json
|
root-no-standard-properties
|
Disallow standard properties inside `:root` rules
|
{}
|
stylelintrc.json
|
rule-nested-empty-line-before
|
Require or disallow an empty line before nested rules
|
{"type": ["null", "string", "array"], "oneOf": [{"type": "null"}, {"type": "string", "enum": ["always", "never", "always-multi-line", "never-multi-line", []]}, {"type": "array", "minItems": 2, "maxItems": 2, "uniqueItems": true, "items": {"type": ["string", "object"], "anyOf": [{"type": "string", "enum": ["always", "never", "always-multi-line", "never-multi-line", {}]}, {"type": "object", "allOf": [{}], "properties": {"except": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {"type": "string", "enum": ["first-nested"]}}, "ignore": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {"type": "string", "enum": ["after-comment"]}}}}]}}]}
|
stylelintrc.json
|
except
|
Reverse the primary option if the rule is the first in a block
|
{"type": "array", "uniqueItems": true, "minItems": 1, "items": {"type": "string", "enum": ["first-nested"]}}
|
stylelintrc.json
|
ignore
|
Ignore rules that come after a comment
|
{"type": "array", "uniqueItems": true, "minItems": 1, "items": {"type": "string", "enum": ["after-comment"]}}
|
stylelintrc.json
|
rule-non-nested-empty-line-before
|
Require or disallow an empty line before non-nested rules
|
{"type": ["null", "string", "array"], "oneOf": [{"type": "null"}, {"type": "string", "enum": ["always", "never", "always-multi-line", "never-multi-line", []]}, {"type": "array", "minItems": 2, "maxItems": 2, "uniqueItems": true, "items": {"type": ["string", "object"], "anyOf": [{"type": "string", "enum": ["always", "never", "always-multi-line", "never-multi-line", {}]}, {"type": "object", "allOf": [{}], "properties": {"except": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {"type": "string", "enum": ["after-single-line-comment"]}}, "ignore": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {"type": "string", "enum": ["after-comment"]}}}}]}}]}
|
stylelintrc.json
|
except
|
Reverse the primary option if the rule is the first in a block
|
{"type": "array", "uniqueItems": true, "minItems": 1, "items": {"type": "string", "enum": ["after-single-line-comment"]}}
|
stylelintrc.json
|
ignore
|
Ignore rules that come after a comment
|
{"type": "array", "uniqueItems": true, "minItems": 1, "items": {"type": "string", "enum": ["after-comment"]}}
|
stylelintrc.json
|
selector-attribute-brackets-space-inside
|
Require a single space or disallow whitespace on the inside of the brackets within attribute selector
|
{}
|
stylelintrc.json
|
selector-attribute-operator-blacklist
|
Specify a blacklist of disallowed attribute operators
|
{}
|
stylelintrc.json
|
selector-attribute-operator-space-after
|
Require a single space or disallow whitespace after operators within attribute selectors
|
{}
|
stylelintrc.json
|
selector-attribute-operator-space-before
|
Require a single space or disallow whitespace before operators within attribute selectors
|
{}
|
stylelintrc.json
|
selector-attribute-operator-whitelist
|
Specify a whitelist of allowed attribute operators
|
{}
|
stylelintrc.json
|
selector-attribute-quotes
|
Require or disallow quotes for attribute values
|
{}
|
stylelintrc.json
|
selector-class-pattern
|
Specify a pattern for class selectors
|
{"type": ["null", "string", "array"], "oneOf": [{"type": ["null", "string"]}, {"type": "array", "minItems": 2, "maxItems": 2, "uniqueItems": true, "items": {"type": ["string", "object"], "anyOf": [{"type": "string"}, {"type": "object", "allOf": [{}], "properties": {"resolveNestedSelectors": {"type": "boolean", "default": false}}}]}}]}
|
stylelintrc.json
|
resolveNestedSelectors
|
This option will resolve nested selectors with `&` interpolation
|
{"type": "boolean", "default": false}
|
stylelintrc.json
|
selector-combinator-space-after
|
Require a single space or disallow whitespace after the combinators of selectors
|
{}
|
stylelintrc.json
|
selector-combinator-space-before
|
Require a single space or disallow whitespace before the combinators of selectors
|
{}
|
stylelintrc.json
|
selector-descendant-combinator-no-non-space
|
Disallow non-space characters for descendant combinators of selectors
|
{}
|
stylelintrc.json
|
selector-id-pattern
|
Specify a pattern for id selectors
|
{}
|
stylelintrc.json
|
selector-max-compound-selectors
|
Limit the number of compound selectors in a selector
|
{}
|
stylelintrc.json
|
selector-max-specificity
|
Limit the specificity of selectors
|
{}
|
stylelintrc.json
|
selector-nested-pattern
|
Specify a pattern for the selectors of rules nested within rules
|
{}
|
stylelintrc.json
|
selector-no-attribute
|
Disallow attribute selectors
|
{}
|
stylelintrc.json
|
selector-no-combinator
|
Disallow combinators in selectors
|
{}
|
stylelintrc.json
|
selector-no-id
|
Disallow id selectors
|
{}
|
stylelintrc.json
|
selector-no-qualifying-type
|
Disallow qualifying a selector by type
|
{"type": ["null", "boolean", "array"], "oneOf": [{"type": "null"}, {"type": "boolean", "enum": [true, []]}, {"type": "array", "minItems": 2, "maxItems": 2, "uniqueItems": true, "items": {"type": ["boolean", "object"], "anyOf": [{"type": "boolean", "enum": [true, {}]}, {"type": "object", "allOf": [{}], "properties": {"ignore": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {"type": "string", "enum": ["attribute", "class", "id"]}}}}]}}]}
|
stylelintrc.json
|
selector-no-type
|
Disallow type selectors
|
{"type": ["null", "boolean", "array"], "oneOf": [{"type": "null"}, {"type": "boolean", "enum": [true, []]}, {"type": "array", "minItems": 2, "maxItems": 2, "uniqueItems": true, "items": {"type": ["boolean", "object"], "anyOf": [{"type": "boolean", "enum": [true, {}]}, {"type": "object", "allOf": [{}], "properties": {"ignore": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {"type": "string", "enum": ["compounded", "descendant"]}}, "ignoreTypes": {}}}]}}]}
|
stylelintrc.json
|
selector-no-universal
|
Disallow the universal selector
|
{}
|
stylelintrc.json
|
selector-no-vendor-prefix
|
Disallow vendor prefixes for selectors
|
{}
|
stylelintrc.json
|
selector-pseudo-class-case
|
Specify lowercase or uppercase for pseudo-class selectors
|
{}
|
stylelintrc.json
|
selector-pseudo-class-no-unknown
|
Disallow unknown pseudo-class selectors
|
{"type": ["null", "boolean", "array"], "oneOf": [{"type": "null"}, {"type": "boolean", "enum": [true, []]}, {"type": "array", "minItems": 2, "maxItems": 2, "uniqueItems": true, "items": {"type": ["boolean", "object"], "anyOf": [{"type": "boolean", "enum": [true, {}]}, {"type": "object", "allOf": [{}], "properties": {"ignorePseudoClasses": {}}}]}}]}
|
stylelintrc.json
|
selector-pseudo-class-parentheses-space-inside
|
Require a single space or disallow whitespace on the inside of the parentheses within pseudo-class selectors
|
{}
|
stylelintrc.json
|
selector-pseudo-class-whitelist
|
Specify a whitelist of allowed pseudo-class selectors
|
{}
|
stylelintrc.json
|
selector-pseudo-element-case
|
Specify lowercase or uppercase for pseudo-element selectors
|
{}
|
stylelintrc.json
|
selector-pseudo-element-colon-notation
|
Specify single or double colon notation for applicable pseudo-elements
|
{}
|
stylelintrc.json
|
selector-pseudo-element-no-unknown
|
Disallow unknown pseudo-element selectors
|
{"type": ["null", "boolean", "array"], "oneOf": [{"type": "null"}, {"type": "boolean", "enum": [true, []]}, {"type": "array", "minItems": 2, "maxItems": 2, "uniqueItems": true, "items": {"type": ["boolean", "object"], "anyOf": [{"type": "boolean", "enum": [true, {}]}, {"type": "object", "allOf": [{}], "properties": {"ignorePseudoElements": {}}}]}}]}
|
stylelintrc.json
|
selector-root-no-composition
|
Disallow the composition of :root in selectors
|
{}
|
stylelintrc.json
|
selector-type-case
|
Specify lowercase or uppercase for type selectors
|
{}
|
stylelintrc.json
|
selector-type-no-unknown
|
Disallow unknown type selectors
|
{"type": ["null", "boolean", "array"], "oneOf": [{"type": "null"}, {"type": "boolean", "enum": [true, []]}, {"type": "array", "minItems": 2, "maxItems": 2, "uniqueItems": true, "items": {"type": ["boolean", "object"], "anyOf": [{"type": "boolean", "enum": [true, {}]}, {"type": "object", "allOf": [{}], "properties": {"ignoreTypes": {}}}]}}]}
|
stylelintrc.json
|
selector-max-empty-lines
|
Limit the number of adjacent empty lines within selectors
|
{}
|
stylelintrc.json
|
selector-list-comma-newline-after
|
Require a newline or disallow whitespace after the commas of selector lists
|
{}
|
stylelintrc.json
|
selector-list-comma-newline-before
|
Require a newline or disallow whitespace before the commas of selector lists
|
{}
|
stylelintrc.json
|
selector-list-comma-space-after
|
Require a single space or disallow whitespace after the commas of selector lists
|
{}
|
stylelintrc.json
|
selector-list-comma-space-before
|
Require a single space or disallow whitespace before the commas of selector lists
|
{}
|
stylelintrc.json
|
shorthand-property-no-redundant-values
|
Disallow redundant values in shorthand properties
|
{}
|
stylelintrc.json
|
string-no-newline
|
Disallow (unescaped) newlines in strings
|
{}
|
stylelintrc.json
|
string-quotes
|
Specify single or double quotes around strings
|
{}
|
stylelintrc.json
|
stylelint-disable-reason
|
Require a reason comment before or after `stylelint-disable` comments
|
{"type": ["null", "string", "array"], "oneOf": [{"type": "null"}, {"type": "string", "enum": ["always-before", "always-after", []]}, {"type": "array", "minItems": 2, "maxItems": 2, "uniqueItems": true, "items": {"type": ["string", "object"], "anyOf": [{"type": "string", "enum": ["always-before", "always-after", {}]}, {}]}}]}
|
stylelintrc.json
|
time-no-imperceptible
|
Disallow `animation` and `transition` less than or equal to 100ms
|
{}
|
stylelintrc.json
|
unit-blacklist
|
Specify a blacklist of disallowed units
|
{}
|
stylelintrc.json
|
unit-case
|
Specify lowercase or uppercase for units
|
{}
|
stylelintrc.json
|
unit-no-unknown
|
Disallow unknown units
|
{"type": ["null", "boolean", "array"], "oneOf": [{"type": "null"}, {"type": "boolean", "enum": [true, []]}, {"type": "array", "minItems": 2, "maxItems": 2, "uniqueItems": true, "items": {"type": ["boolean", "object"], "anyOf": [{"type": "boolean", "enum": [true, {}]}, {"type": "object", "allOf": [{}], "properties": {"ignoreUnits": {}}}]}}]}
|
stylelintrc.json
|
unit-whitelist
|
Specify a whitelist of allowed units
|
{}
|
stylelintrc.json
|
value-keyword-case
|
Specify lowercase or uppercase for keywords values
|
{"type": ["null", "string", "array"], "oneOf": [{"type": "null"}, {"type": "string", "enum": ["lower", "upper", []]}, {"type": "array", "minItems": 2, "maxItems": 2, "uniqueItems": true, "items": {"type": ["string", "object"], "anyOf": [{"type": "string", "enum": ["lower", "upper", {}]}, {"type": "object", "allOf": [{}], "properties": {"ignoreKeywords": {}}}]}}]}
|
stylelintrc.json
|
ignoreKeywords
|
Ignore case of keywords values
|
{}
|
stylelintrc.json
|
value-no-vendor-prefix
|
Disallow vendor prefixes for values
|
{}
|
stylelintrc.json
|
value-list-comma-newline-after
|
Require a newline or disallow whitespace after the commas of value lists
|
{}
|
stylelintrc.json
|
value-list-comma-newline-before
|
Require a newline or disallow whitespace before the commas of value lists
|
{}
|
stylelintrc.json
|
value-list-comma-space-after
|
Require a single space or disallow whitespace after the commas of value lists
|
{}
|
stylelintrc.json
|
value-list-comma-space-before
|
Require a single space or disallow whitespace before the commas of value lists
|
{}
|
stylelintrc.json
|
value-list-max-empty-lines
|
Limit the number of adjacent empty lines within value lists
|
{}
|
stylelintrc.json
|
extends
|
Your configuration can extend an existing configuration(s) (whether your own or a third-party config)
|
{}
|
stylelintrc.json
|
plugins
|
Plugins are rules or sets of rules built by the community that support methodologies, toolsets, non-standard CSS features, or very specific use cases
|
{}
|
stylelintrc.json
|
customSyntax
|
Specify a custom syntax to use on your code.
|
{"type": "string"}
|
stylelintrc.json
|
overrides
|
Provide rule and behavior overrides for files that match particular glob patterns.
|
{"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "customSyntax": {"type": "string"}, "rules": {}}}}
|
stylelintrc.json
|
processors
|
Processors are functions that hook into stylelint's pipeline, modifying code on its way into stylelint and modifying results on their way out
|
{"type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "array", "items": [{"type": "string"}], "additionalItems": {"type": "object"}}]}}
|
stylelintrc.json
|
ignoreDisables
|
Ignore stylelint-disable (e.g. /* stylelint-disable block-no-empty */) comments.
|
{"type": "boolean"}
|
stylelintrc.json
|
ignoreFiles
|
Provide a glob or array of globs to ignore specific files
|
{}
|
stylelintrc.json
|
defaultSeverity
|
The default severity level for all rules that do not have a severity specified in their secondary options
|
{"type": "string", "enum": ["warning", "error"]}
|
stylelintrc.json
|
reportDescriptionlessDisables
|
Report stylelint-disable comments without a description.
|
{}
|
stylelintrc.json
|
reportInvalidScopeDisables
|
Report stylelint-disable comments that don't match rules that are specified in the configuration object.
|
{}
|
stylelintrc.json
|
reportNeedlessDisables
|
Report stylelint-disable comments that don't actually match any lints that need to be disabled
|
{}
|
bootstraprc.json
|
env
|
Sets the extractStyles property based on the value of NODE_ENV
|
{"type": "object", "properties": {"development": {}, "production": {}}}
|
bootstraprc.json
|
extractStyles
|
Enables/disables extraction of styles to a standalone CSS file using extract-text-webpack-plugin
|
{"default": false, "type": "boolean"}
|
bootstraprc.json
|
appStyles
|
Import your custom styles here. Usually this endpoint file contains a list of @imports of your application styles.
|
{"type": "string"}
|
bootstraprc.json
|
bootstrapCustomizations
|
The .scss file path to be loaded after Bootstrap's _variables.scss file
|
{"type": "string"}
|
bootstraprc.json
|
bootstrapVersion
|
The major version of Bootstrap being used
|
{"default": 3, "enum": [3, 4], "type": "integer"}
|
bootstraprc.json
|
loglevel
|
The verbosity of logging. Exclude this property to disable.
|
{"enum": ["debug"], "type": "string"}
|
bootstraprc.json
|
preBootstrapCustomizations
|
The .scss file path to be loaded before Bootstrap's _variables.scss file
|
{"type": "string"}
|
bootstraprc.json
|
scripts
|
Excludes/includes Bootstrap's JavaScript modules
|
{"type": ["boolean", "object"]}
|
bootstraprc.json
|
styleLoaders
|
An array of Webpack loader names. Order matters, and sass-loader is required.
|
{"default": ["style", "css", "sass"], "items": {"type": "string"}, "minItems": 1, "type": "array", "uniqueItems": true}
|
bootstraprc.json
|
styles
|
Excludes/includes Bootstrap's CSS modules
|
{"type": ["boolean", "object"]}
|
bootstraprc.json
|
useCustomIconFontPath
|
Set to true if using a custom icon font and you need to specify its path in your Sass files
|
{"default": false, "type": "boolean"}
|
bootstraprc.json
|
useFlexbox
|
Enables/disables the flexbox model available in Bootstrap 4
|
{"default": true, "type": "boolean"}
|
ubuntu-server-autoinstall.json
|
Settings file for Ubuntu Autoinstall
|
{"$schema": "http://json-schema.org/draft-04/schema#", "id": "https://json.schemastore.org/ubuntu-server-autoinstall.json", "properties": {"autoinstall": {"type": "object", "properties": {"version": {"type": "integer", "minimum": 1, "maximum": 1}, "early-commands": {"type": "array", "items": {"type": ["string", "array"], "items": {"type": "string"}}}, "reporting": {"type": "object", "additionalProperties": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"], "additionalProperties": true}}, "error-commands": {"type": "array", "items": {"type": ["string", "array"], "items": {"type": "string"}}}, "user-data": {"type": "object"}, "packages": {"type": "array", "items": {"type": "string"}}, "debconf-selections": {"type": "string"}, "locale": {"type": "string"}, "refresh-installer": {"type": "object", "properties": {"update": {"type": "boolean"}, "channel": {"type": "string"}}, "additionalProperties": false}, "keyboard": {"type": "object", "properties": {"layout": {"type": "string"}, "variant": {"type": "string"}, "toggle": {"type": ["string", "null"]}}, "required": ["layout"], "additionalProperties": false}, "network": {"oneOf": [{"type": "object", "properties": {"version": {"type": "integer", "minimum": 2, "maximum": 2}, "ethernets": {"type": "object", "properties": {"match": {"type": "object", "properties": {"name": {"type": "string"}, "macaddress": {"type": "string"}, "driver": {"type": "string"}}, "additionalProperties": false}}}, "wifis": {"type": "object", "properties": {"match": {"type": "object", "properties": {"name": {"type": "string"}, "macaddress": {"type": "string"}, "driver": {"type": "string"}}, "additionalProperties": false}}}, "bridges": {"type": "object"}, "bonds": {"type": "object"}, "tunnels": {"type": "object"}, "vlans": {"type": "object"}}, "required": ["version"]}, {"type": "object", "properties": {"network": {"type": "object", "properties": {"version": {"type": "integer", "minimum": 2, "maximum": 2}, "ethernets": {"type": "object", "properties": {"match": {"type": "object", "properties": {"name": {"type": "string"}, "macaddress": {"type": "string"}, "driver": {"type": "string"}}, "additionalProperties": false}}}, "wifis": {"type": "object", "properties": {"match": {"type": "object", "properties": {"name": {"type": "string"}, "macaddress": {"type": "string"}, "driver": {"type": "string"}}, "additionalProperties": false}}}, "bridges": {"type": "object"}, "bonds": {"type": "object"}, "tunnels": {"type": "object"}, "vlans": {"type": "object"}}, "required": ["version"]}}, "required": ["network"]}]}, "proxy": {"type": ["string", "null"], "format": "uri"}, "apt": {"type": "object", "properties": {"preserve_sources_list": {"type": "boolean"}, "primary": {"type": "array"}, "geoip": {"type": "boolean"}, "sources": {"type": "object"}}}, "storage": {"type": "object"}, "identity": {"type": "object", "properties": {"realname": {"type": "string"}, "username": {"type": "string"}, "hostname": {"type": "string"}, "password": {"type": "string"}}, "required": ["username", "hostname", "password"], "additionalProperties": false}, "ssh": {"type": "object", "properties": {"install-server": {"type": "boolean"}, "authorized-keys": {"type": "array", "items": {"type": "string"}}, "allow-pw": {"type": "boolean"}}}, "snaps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "channel": {"type": "string"}, "classic": {"type": "boolean"}}, "required": ["name"], "additionalProperties": false}}, "late-commands": {"type": "array", "items": {"type": ["string", "array"], "items": {"type": "string"}}}}, "required": ["version"], "additionalProperties": true}}, "type": "object"}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.