Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add ameba(linter) to development dependencies #17

Merged
merged 1 commit into from
Apr 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ language: crystal
before_install:
- shards install

script: crystal spec
script:
- crystal spec
- bin/ameba
5 changes: 5 additions & 0 deletions shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ authors:
crystal: 0.26.1

license: MIT

development_dependencies:
ameba:
github: veelenga/ameba
version: ~> 0.9.1
1 change: 0 additions & 1 deletion src/monads/functor.cr
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ module Monads
abstract def fmap(&block : T -> U) : Functor(U)
end
end

1 change: 0 additions & 1 deletion src/monads/monad.cr
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ module Monads
abstract def bind(&block : T -> Monad(U)) : Monad(U) forall U
end
end