redmine_landing_page/.rubocop.yml
2016-07-25 22:22:24 +03:00

21 lines
405 B
YAML

AllCops:
TargetRubyVersion: 1.9
DisabledByDefault: true
# Two spaces, no tabs (for indentation).
Style/IndentationWidth:
Enabled: true
# No trailing whitespace.
Style/TrailingWhitespace:
Enabled: true
# Blank lines should not have any spaces.
Style/TrailingBlankLines:
Enabled: true
# Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }.
Style/HashSyntax:
Enabled: true