Dogma v0.1.16 Dogma.Rule.CommentFormat

A rule that disallows comments with no space between the # and the comment text.

This is considered valid:

# Here is a function:
#
#   def inc(n), do: n + 1

This is considered invalid:

#Hello, world!

Summary

Functions

Callback implementation for c:Dogma.Rule.test/2

Functions

test(rule, script)

Callback implementation for c:Dogma.Rule.test/2.