Skip to content

Commit

Permalink
Open detailed linter results by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-mairose-sp committed Mar 11, 2022
1 parent 5e430b3 commit c86267f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/to_markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let toMarkdown = async (processedPbs, project) => {
const nbInfos = severitiesCount[2];
const nbHints = severitiesCount[3];
const nbPbs = nbErrors + nbWarnings + nbInfos + nbHints;
let md = `<details>
let md = `<details open>
<summary>OpenAPI lint errors: ${nbPbs} problems (${nbErrors} errors, ${nbWarnings} warnings, ${nbInfos} infos, ${nbHints} hints)</summary>
`;
Expand Down

0 comments on commit c86267f

Please sign in to comment.