Go to file
V. Elenhaupt dff7e6a454
Travis: track only master branch
2017-11-03 12:12:45 +02:00
bin Ameba cli & binary (#7) 2017-11-01 17:21:41 +02:00
spec Custom matcher 2017-11-01 22:05:41 +02:00
src Colorize dot formatter 2017-11-01 22:37:21 +02:00
.editorconfig Hello, Ameba 2017-10-26 19:46:58 +03:00
.gitignore Ameba cli & binary (#7) 2017-11-01 17:21:41 +02:00
.travis.yml Ameba cli & binary (#7) 2017-11-01 17:21:41 +02:00
LICENSE Hello, Ameba 2017-10-26 19:46:58 +03:00
Makefile Ameba cli & binary (#7) 2017-11-01 17:21:41 +02:00
README.md Travis: track only master branch 2017-11-03 12:12:45 +02:00
shard.yml Ameba cli & binary (#7) 2017-11-01 17:21:41 +02:00

README.md

Ameba

Code style linter for Crystal

(a single-celled animal that catches food and moves about by extending fingerlike projections of protoplasm)

About

Ameba is a tool for enforcing a consistent Crystal code style, for catching code smells and wrong code constructions. Ameba's rules traverse AST and report bad parts of your code.

Is still under construction, compatibility may be broken 🚧

Installation

Add this to your application's shard.yml:

development_dependencies:
  ameba:
    github: veelenga/ameba

That will compile and install ameba binary onto your system.

Or just compile it from sources make install.

Usage

Run ameba binary to catch code issues within you project:

$ ameba
Inspecting 18 files.


...............F.F

18 inspected, 2 failures.

src/ameba/source.cr:26
LineLength: Line too long (82 symbols)

src/ameba.cr:12
UnlessElse: Favour if over unless with else

Write a new Rule

Adding a new rule is as simple as inheriting from Rule struct and implementing your logic to detect a problem:

struct DebuggerStatement < Rule
  # This is a required method to be implemented by the rule.
  # Source will pass here. If rule finds an issue in this source,
  # it adds an error: 
  # 
  #   source.error rule, line_number, message
  #
  def test(source)
    # This line deletegates verification to a particular AST visitor.
    AST::CallVisitor.new self, source
  end

  # This method is called once our visitor finds a required node.
  # 
  # It reports an error, once there is `debugger` method call
  # without arguments and a receiver. That's it, somebody forgot
  # to remove debugger statement.
  def test(source, node : Crystal::Call)
    return unless node.name == "debugger" && node.args.empty? && node.obj.nil?

    source.error self, node.location.try &.line_number,
      "Possible forgotten debugger statement detected"
  end
end

Contributors

  • veelenga Vitalii Elenhaupt - creator, maintainer