Code Inspections in YAML
This topic lists all PhpStorm code inspections available in YAML.
You can toggle specific inspections or change their severity level on the Editor | Inspections page of the IDE settings Ctrl+Alt+S.
Inspection | Description | Default Severity |
---|---|---|
Reports deprecated keys in YAML files. Deprecation is checked only if there exists a JSON schema associated with the corresponding YAML file. Note that the deprecation mechanism is not defined in the JSON Schema specification yet, and this inspection uses a non-standarddeprecationMessage extension. Scheme deprecation example:
{
"properties": {
"SomeDeprecatedProperty": {
"deprecationMessage": "Baz",
"description": "Foo bar"
}
}
}
The following is an example with the corresponding warning:
SomeDeprecatedProperty: some value
| Weak warning | |
Reports duplicated keys in YAML files. Example:
same_key: some value
same_key: another value
| Error | |
Reports recursion in YAML aliases. Alias can't be recursive and be used inside the data referenced by a corresponding anchor. Example:
some_key: &some_anchor
sub_key1: value1
sub_key2: *some_anchor
| Error | |
Reports unresolved aliases in YAML files. Example:
some_key: *unknown_alias
| Error | |
Reports unused anchors. Example:
some_key: &some_anchor
key1: value1
| Warning | |
Reports inconsistencies between a YAML file and a JSON Schema if the schema is specified. Scheme example:
{
"properties": {
"SomeNumberProperty": {
"type": "number"
}
}
}
The following is an example with the corresponding warning:
SomeNumberProperty: hello world
| Warning |
Last modified: 11 February 2022