Skip to content

Commit

Permalink
docs(rules): make rule list available as a csv (#1479)
Browse files Browse the repository at this point in the history
  • Loading branch information
gotbadger authored Jan 31, 2024
1 parent 5fd994c commit f8c1c3b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/rules.csv.njk
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
permalink: '/rules.csv'
eleventyExcludeFromCollections: true
layout: false
---

Language; Rule Title; Rule ID; Framework; CWE; Doc
{% for rule in rules.rules | sortById %}{{ rule.languages | join(", ")}}; {{ rule.metadata.description | safe }}; {{ rule.metadata.id }} ;{{ rule.framework }}; {{ rule.metadata.cwe_id | join(", ")}}; {{ rule.metadata.documentation_url }}
{% endfor %}

0 comments on commit f8c1c3b

Please sign in to comment.