We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When linting https://github.com/mdn/data/blob/master/css/at-rules.json, a schema error was detected for the @property object (
@property
data/css/at-rules.json
Line 331 in 3a92ce8
"@property": { "syntax": "@property <custom-property-name> {\n <declaration-list>\n}", "status": "experimental", "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@property" },
because it was missing the groups property per
groups
data/css/at-rules.schema.json
Line 39 in 3a92ce8
JSON Schema – 1 error(s)
... css/at-rules.json Style – OK JSON Schema – 1 error(s) css/at-rules.schema.json Style – OK ...
This seems to be a problem in the better-ajv-errors npm package.
better-ajv-errors
NOTE (to self): The value of ajv.errors at
ajv.errors
data/test/lint.js
Line 75 in 3a92ce8
[ { keyword: 'required', dataPath: '/@property', schemaPath: '#/additionalProperties/required', params: { missingProperty: 'groups' }, message: "should have required property 'groups'" } ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When linting https://github.com/mdn/data/blob/master/css/at-rules.json, a schema error was detected for the
@property
object (data/css/at-rules.json
Line 331 in 3a92ce8
because it was missing the
groups
property perdata/css/at-rules.schema.json
Line 39 in 3a92ce8
Although the error output reports
JSON Schema – 1 error(s)
, the detailed error message is blank:This seems to be a problem in the
better-ajv-errors
npm package.NOTE (to self): The value of
ajv.errors
atdata/test/lint.js
Line 75 in 3a92ce8
The text was updated successfully, but these errors were encountered: