Project

General

Profile

Download (772 Bytes) Statistics
| Branch: | Tag: | Revision:
# TODO: remove this file by either moving cops here or fixing code
inherit_from:
- .rubocop_todo.yml

AllCops:
TargetRubyVersion: 2.0
Include:
- 'app/views/api/**/*.rabl'
Exclude:
- 'db/schema.rb'
- 'node_modules/**/*'
- 'vendor/**/*'

Rails:
Enabled: true

# Don't prefer is_a? over kind_of?
Style/ClassCheck:
Enabled: false

# Don't enforce documentation
Style/Documentation:
Enabled: false

# Support both ruby19 and hash_rockets
Style/HashSyntax:
Enabled: false

# Both double and single quotes are OK
Style/StringLiterals:
Enabled: false

# Don't enforce frozen string literals
Style/FrozenStringLiteralComment:
Enabled: false

Metrics/ClassLength:
Exclude:
- 'test/**/*'

Performance/FixedSize:
Exclude:
- 'test/**/*'
(7-7/21)