Skip to content

Commit

Permalink
Hide unreleased lints in all list (#5853)
Browse files Browse the repository at this point in the history
  • Loading branch information
parlough authored May 21, 2024
1 parent 4f8c0d8 commit 50c7e76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/tools/linter-rules/all.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ and adjust as you see fit.
linter:
rules:
{% for lint in sorted_lints %}
{%- if lint.sinceDartSdk != "Unreleased" and lint.state != "removed" and lint.state != "internal" -%}
{%- if lint.sinceDartSdk != "Unreleased" and lint.sinceDartSdk not contains "-wip" and lint.state != "removed" and lint.state != "internal" -%}
- {{lint.name}}
{% endif -%}
{%- endfor %}
Expand Down

0 comments on commit 50c7e76

Please sign in to comment.