Skip to content

Commit

Permalink
docs improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
chris48s committed Aug 19, 2024
1 parent 6a84091 commit daca1a8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,12 @@ async function loadAllPlugins(userPlugins) {

/**
* @typedef {object} ValidationResult
* @property {string} fileLocation - Filename of the document that was
* validated.
* @property {string} fileLocation - Path of the document that was validated.
* Filenames are resolved and normalised by
* [glob](https://www.npmjs.com/package/glob) using the `dotRelative` option.
* This means relative paths in the current directory will be prefixed with
* `./` (or `.\` on Windows) even if this was not present in the input
* filename or pattern.
* @property {string | null} schemaLocation - Location of the schema used to
* validate this file if one could be found. `null` if no schema was found.
* @property {boolean | null} valid - Result of the validation (true/false) if a
Expand Down

0 comments on commit daca1a8

Please sign in to comment.