Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,13 @@ Default for `validatorConfig`:
"extends": ["html-validate:standard"]
}
```

You may also want to override the version of [html-validate](https://www.npmjs.com/package/html-validate) this module ships with by default, since that module has had a history of updating faster than this one does at times. To do so, set this in your app's `package.json`:

```json
"overrides": {
"html-validate": "x.y.z"
}
```

Where `x.y.z` is your desired version. After doing so, delete your `node_modules` folder and `package-lock.json` then run `npm i` to install the override.
Loading