Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Escape gt sign #29

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ deps:

PHONY: toc
toc: deps
markdown-toc -i README.md --bullets="*" --maxdepth=3
markdown-toc -i style-guide.md --bullets="*" --maxdepth=3

4 changes: 2 additions & 2 deletions style-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Rego policies. If you enjoy this style guide, make sure to check it out!
* [Consider using JSON schemas for type checking](#consider-using-json-schemas-for-type-checking)
* [Style](#style)
* [Prefer snake_case for rule names and variables](#prefer-snake_case-for-rule-names-and-variables)
* [Keep line length <= 120 characters](#keep-line-length--120-characters)
* [Keep line length `<=` 120 characters](#keep-line-length--120-characters)
* [Rules](#rules)
* [Use helper rules and functions](#use-helper-rules-and-functions)
* [Use negation to handle undefined](#use-negation-to-handle-undefined)
Expand Down Expand Up @@ -220,7 +220,7 @@ Regal rule. Get started with [Regal, the Rego linter](https://docs.styra.com/reg
:::


### Keep line length <= 120 characters
### Keep line length `<=` 120 characters

Long lines are tedious to read. Keep line length at 120 characters or below.

Expand Down