rspec/rules/S2047/description.adoc

5 lines
372 B
Plaintext
Raw Normal View History

2020-06-30 12:48:07 +02:00
Well-named functions can allow the users of your code to understand at a glance what to expect from the function - even before reading the documentation. Toward that end, methods returning a boolean property should have names that start with "is" or "has" rather than with "get".
2021-02-02 15:02:10 +01:00
2020-06-30 12:48:07 +02:00
Note that this rule will only apply to functions that are documented to return a boolean.