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

docs(rules): some updates for new languages #1342

Merged
merged 1 commit into from
Oct 19, 2023
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
14 changes: 13 additions & 1 deletion docs/reference/rules.njk
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Rules are ways to detect security risks and vulnerabilities across your codebase

The built-in rules aim to keep you protected from the most critical security risks and vulnerabilities of web applications and include corresponding [Common Weakness Enumeration](https://cwe.mitre.org/data/index.html) (CWE) and [OWASP](https://owasp.org/Top10) links to help you identify them.

Don't find a rule you are looking for? You can develop a [custom rule](https://docs.bearer.com/guides/custom-rule/) that allow you to add specific requirements to suit your organization's needs.
Don't find a rule you are looking for? You can develop a [custom rule](https://docs.bearer.com/guides/custom-rule/) that allow you to add specific requirements to suit your organization's needs.

{% endrenderTemplate %}

Expand Down Expand Up @@ -37,6 +37,18 @@ Don't find a rule you are looking for? You can develop a [custom rule](https://d
<input type="checkbox" name="lang-java" id="lang-java" class='filter-toggle' value="java_">
<label for="lang-java" class="toggle-label">Java</label>
</li>
<li>
<input type="checkbox" name="lang-php" id="lang-php" class='filter-toggle' value="php_">
<label for="lang-php" class="toggle-label">PHP</label>
</li>
<li>
<input type="checkbox" name="lang-php" id="lang-go" class='filter-toggle' value="go_">
<label for="lang-go" class="toggle-label">Go</label>
</li>
<li>
<input type="checkbox" name="lang-python" id="lang-python" class='filter-toggle' value="python_">
<label for="lang-python" class="toggle-label">Python</label>
</li>
</ul>
</div>
<div class="js-filter-container relative">
Expand Down
10 changes: 3 additions & 7 deletions docs/reference/supported-languages.njk
Original file line number Diff line number Diff line change
Expand Up @@ -31,28 +31,24 @@ supportChart:
name: PHP
frameworks:
- Symfony
rules: false
rules: true
searchName: lang-php
searchTerm: php_
status: Beta
go:
name: Go
frameworks: []
rules: false
rules: true
searchName: lang-go
searchTerm: go_
status: Alpha
comment: Beta coming soon
comment_link: https://github.com/Bearer/bearer/issues/1302
python:
name: Python
frameworks: []
rules: false
rules: true
searchName: lang-python
searchTerm: python_
status: Alpha
comment: Beta coming soon
comment_link: https://github.com/Bearer/bearer/issues/1303

---
{% renderTemplate "liquid,md" %}
Expand Down
Loading