Sha256: d165c965e249e4cc2d822ac9bd3544d3fbf6bd006c7c3905ef52226ec2dab543
Contents?: true
Size: 1.03 KB
Versions: 15
Compression:
Stored size: 1.03 KB
Contents
# Uncommunicative Method Name ## Introduction An `Uncommunicative Method Name` is a method name that doesn't communicate its intent well enough. Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names. ## Current Support in reek `Uncommunicative Method Name` checks for: * 1-character names * any name ending with a number * camelCaseVariableNames ## Configuration `reek`'s Uncommunicative Method Name detector supports the [Basic Smell Options](Basic-Smell-Options.md), plus: | Option | Value | Effect | | ---------------|-------------|---------| | `reject` | array of regular expressions | The set of regular expressions that `reek` uses to check for bad names. Defaults to `[/^[a-z]$/, /[0-9]$/, /[A-Z]/]`. | | `accept` | array of strings or regular expressions | Name that will be accepted (not reported) even if they match one of the `reject` expressions. |
Version data entries
15 entries across 15 versions & 1 rubygems