discourse/.rubocop.yml
2014-01-07 16:59:57 -05:00

31 lines
No EOL
573 B
YAML
Vendored

AllCops:
# Include gemspec and Rakefile
Includes:
- '**/*.gemspec'
- '**/Rakefile'
Excludes: []
# Prefer ' strings when you don't need string interpolation or special symbols.
StringLiterals:
Enabled: false
# Limit lines to 79 characters.
LineLength:
Enabled: true
Max: 180
# Avoid methods longer than 10 lines of code
MethodLength:
Enabled: true
CountComments: false # count full line comments?
Max: 10
# Document classes and non-namespace modules.
Documentation:
Enabled: false
CaseEquality:
Enabled: false
ClassVars:
Enabled: false