Skip to content

Commit

Permalink
Merge pull request #1155 from ergebnis/feature/schema
Browse files Browse the repository at this point in the history
Enhancement: Update `schema.json`
  • Loading branch information
localheinz committed Sep 4, 2023
2 parents 72996d0 + 0d7f67d commit b1656fb
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

For a full diff see [`2.35.0...main`][2.35.0...main].

### Changed

- Updated `schema.json` ([#1155]), by [@ergebnis-bot]

## [`2.35.0`][2.35.0]

For a full diff see [`2.34.0...2.35.0`][2.34.0...2.35.0].
Expand Down Expand Up @@ -1099,6 +1103,7 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0].
[#1127]: https://github.com/ergebnis/composer-normalize/pull/1127
[#1136]: https://github.com/ergebnis/composer-normalize/pull/1136
[#1141]: https://github.com/ergebnis/composer-normalize/pull/1141
[#1155]: https://github.com/ergebnis/composer-normalize/pull/1155

[@core23]: https://github.com/core23
[@dependabot]: https://github.com/dependabot
Expand Down
26 changes: 20 additions & 6 deletions resource/schema.json
Expand Up @@ -399,12 +399,26 @@
"type": "object",
"description": "Security audit configuration options",
"properties": {
"ignored": {
"type": "array",
"description": "A set of advisory ids, remote ids or CVE ids that should be ignored and not reported as part of an audit.",
"items": {
"type": "string"
}
"ignore": {
"anyOf": [
{
"type": "object",
"description": "A list of advisory ids, remote ids or CVE ids (keys) and the explanations (values) for why they're being ignored. The listed items are reported but let the audit command pass.",
"additionalProperties": {
"type": [
"string",
"string"
]
}
},
{
"type": "array",
"description": "A set of advisory ids, remote ids or CVE ids that are reported but let the audit command pass.",
"items": {
"type": "string"
}
}
]
}
}
},
Expand Down

0 comments on commit b1656fb

Please sign in to comment.