Vitalii Elenhaupt
Vitalii Elenhaupt
Example: ``` crystal event :my_event do |e| e.error do # run if error happened when event fired end e.transitions from: :pending, to: :active end ```
Closes https://github.com/crystal-ameba/ameba/issues/234 This work implements the inline directives similar to what eslint implements. The issue can be disabled in the following cases: 1. The line of the reported location ends...
cc @petr-fischer Reproduction: ``` $ cat ameba/.ameba.yml # This configuration file was generated by `ameba --gen-config` # on 2021-04-21 10:00:29 UTC using Ameba version 0.14.3. # The point is for...
Hey @samueleaton, thanks for the great shard. Would you mind to enable Travis or any other CI provider? At least `shards build` will help to indicate the Crystal compatibility?
Those configs should be installed with application in `~/.dress/` directory
Would be nice to be able to write function callback in Crystal.
Compare: "Pure Lua" vs "Pure Crystal" vs "Lua running in Crystal" vs "Crystal running in Lua"
Classic example. Would be nice to have in `examples` directory.
Beautifier wrongly processes a multiline statements with dots: Actual: ``` ruby def f(ar) ar.two.three .four .five! end ``` Expected: ``` ruby def f(ar) ar.two.three .four .five! end ```
More information is here: https://forum.crystal-lang.org/t/linting-the-crystal-repository/5118/2