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 8d90be5 commit dd6ae51Copy full SHA for dd6ae51
tools/spectral/ipa/scripts/filter-ipa-violations.js
@@ -88,12 +88,11 @@ async function filterIpaViolations() {
88
// Generate markdown content
89
let markdownContent = `# ${ruleId} Violations Checklist\n\n`;
90
markdownContent += `Generated on: ${new Date().toLocaleString()}\n\n`;
91
-
92
Object.keys(groupedBySource).forEach((source) => {
93
const violations = groupedBySource[source];
94
95
violations.forEach((violation) => {
96
- markdownContent += `## ${violation.source}\n\n`;
+ markdownContent += `## ${violation.message}\n\n`;
97
markdownContent += `Path: \`${violation.path.join('/')}\`\n\n`;
98
markdownContent += `- [ ] Fixed\n\n`;
99
});
0 commit comments