Commit e13c0c67 authored by Lucas Charles's avatar Lucas Charles

doc: Improve customize rulesets example

Add a third rule disablement to example to showcase
proper syntax
parent 312d5560
...@@ -254,8 +254,8 @@ To create a custom ruleset: ...@@ -254,8 +254,8 @@ To create a custom ruleset:
1. Create a custom ruleset file named `sast-ruleset.toml` in the `.gitlab` directory. 1. Create a custom ruleset file named `sast-ruleset.toml` in the `.gitlab` directory.
1. In the `sast-ruleset.toml` file, do one of the following: 1. In the `sast-ruleset.toml` file, do one of the following:
- Disable predefined rules belonging to SAST analyzers. In this example, the disabled rules - Disable predefined rules belonging to SAST analyzers. In this example, the three disabled rules
belong to `eslint` and `sobelow` and have the corresponding identifiers `type` and `value`: belong to `eslint` and `sobelow` by matching the corresponding identifiers' `type` and `value`:
```toml ```toml
[eslint] [eslint]
...@@ -265,6 +265,12 @@ To create a custom ruleset: ...@@ -265,6 +265,12 @@ To create a custom ruleset:
type = "eslint_rule_id" type = "eslint_rule_id"
value = "security/detect-object-injection" value = "security/detect-object-injection"
[[eslint.ruleset]]
disable = true
[eslint.ruleset.identifier]
type = "cwe"
value = "185"
[sobelow] [sobelow]
[[sobelow.ruleset]] [[sobelow.ruleset]]
disable = true disable = true
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment