mirror of
https://github.com/jimeh/rubocopfmt.el.git
synced 2026-02-19 09:06:41 +00:00
Fix minor grammatical issue with readme
This commit is contained in:
12
README.md
12
README.md
@@ -55,11 +55,11 @@ Cops disabled by default:
|
||||
|
||||
- `Lint/Debugger`: Removes `debugger` statements. Not helpful when you need to
|
||||
debug something.
|
||||
- `Lint/UnusedBlockArgument`: Don't prefix unused block variable names with
|
||||
`_`. This cop causes issues if you save after defining a block, but before you
|
||||
use all arguments of the block.
|
||||
- `Lint/UnusedMethodArgument`: Don't prefix unused method variable names with
|
||||
`_`. This cop causes issues if you save after defining a method, but before
|
||||
you use all arguments of the method.
|
||||
- `Lint/UnusedBlockArgument`: Don't prefix unused block argument variable names
|
||||
with `_`. This cop causes issues if you save after defining a block, but
|
||||
before you use all arguments of the block.
|
||||
- `Lint/UnusedMethodArgument`: Don't prefix unused method argument variable
|
||||
names with `_`. This cop causes issues if you save after defining a method,
|
||||
but before you use all arguments of the method.
|
||||
- `Style/EmptyMethod`: Don't remove remove empty line for empty methods. This
|
||||
cop is annoying if you save right after defining a new method.
|
||||
|
||||
Reference in New Issue
Block a user