-
Notifications
You must be signed in to change notification settings - Fork 38
Home
V. Elenhaupt edited this page May 13, 2018
·
32 revisions
- Useless assignments
- Unused arguments
- Shadowed argument
- Shadowing outer variable
- Duplicated method
- Unneeded private method
- Crystal tool format #40
- Dead code
- Redundant
.with_index
,.with_object
,each_with_index
,each_with_object
- Expression in a void context
- ...
-
Emacs ameba.el
-
SublimeText SublimeLinter-contrib-ameba
-
Atom atom-linter-ameba
-
Vim
- vim-crystal via Syntastic
- via Ale
- Show end location of the error (
node.end_location
) - Add an option to display affected code in
DotFormatter
- Add severity
error
/warning
/refactoring
etc. - Rename
Error
andsource.errors
to the entity that fits better (i.e.Issue
,source.issues
) - Use namespaces for rules, i.e.
Lint
,Style
etc. - Autocorrect issues #34
- ...