We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24b4b94 commit 516f0f2Copy full SHA for 516f0f2
src/plugins/validation/structural-validation/validator.js
@@ -12,7 +12,6 @@ export function validate({ jsSpec, specStr, settings = {} }) {
12
settings.schemas.forEach(schema => validator.addSchema(schema))
13
return validator.validate(jsSpec, settings.testSchema || {})
14
.errors.map(err => {
15
- console.log("validation error", err)
16
return {
17
level: "error",
18
line: getLineNumberForPath(specStr, transformPathToArray(err.property, jsSpec) || []),
0 commit comments