Skip to content

Commit 0c118fc

Browse files
authored
enhance Analyzer.md
1 parent a429ef1 commit 0c118fc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/Analyzer.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ Here's a list of currently supported rules:
3333
| `basePackage` | warning | Checks if all sources are within the specified base package |
3434
| `catchThrowable` | warning | Makes sure that code does not catch `Throwable` directly, which can hide critical errors like `OutOfMemoryError` |
3535
| `finalValueClasses` | warning | Makes sure that value classes are marked final. |
36+
| `finalCaseClasses` | warning | Makes sure that case classes are marked final. Does not affect inner classes. |
3637
| `implicitParamDefaults` | warning | Makes sure that default values are not defined for implicit parameters |
3738
| `implicitValueClasses` | warning | Makes sure that implicit classes extend `AnyVal` (when applicable). Nested classes check can be enabled by passing the `true` argument. |
38-
| `implicitFunctionParams` | warning | Makes sure that implicit parameters are not function types or partial functions |
39+
| `implicitFunctionParams` | warning | Makes sure that implicit parameters are not function types or partial functions |
40+
3941

4042
Rules may be enabled and disabled in `build.sbt` with Scala compiler options:
4143

0 commit comments

Comments
 (0)