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

Add "standard:" prefix in rule ids in documentation #2702

Merged
merged 1 commit into from
Jun 15, 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
8 changes: 4 additions & 4 deletions documentation/release-latest/docs/rules/experimental.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Consistently add or remove blank lines between when-conditions in a when-stateme
|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------:|:-------------:|:--------------:|
| `ij_kotlin_line_break_after_multiline_when_entry`<br/><i>Despite its name, forces a blank line between single line and multiline when-entries when at least one multiline when-entry is found in the when-statement.</i> | `true` | `true` | `true` |

Rule id: `blank-lines-between-when-conditions` (`standard` rule set)
Rule id: `standard:blank-lines-between-when-conditions`

## KDoc

Expand Down Expand Up @@ -164,7 +164,7 @@ Access modifiers are ignored. Strictly speaking, one could argue that private de
)
```

Rule id: `kdoc` (`standard` rule set)
Rule id: `standard:kdoc`

## Mixed condition operators

Expand All @@ -185,7 +185,7 @@ Conditions should not use a both `&&` and `||` operators between operators at th
val foo = bar1 && (bar2 || bar3 && bar4) && bar5
```

Rule id: `mixed-condition-operators` (`standard` rule set)
Rule id: `standard:mixed-condition-operators`

## Square brackets spacing

Expand Down Expand Up @@ -219,4 +219,4 @@ Check for spacing around square brackets.
val foo3 = bar[1 ]
```

Rule id: `square-brackets-spacing` (`standard` rule set)
Rule id: `standard:square-brackets-spacing`
Loading