Sha256: 863f0da1d41e48fd173dbc4837ef26a94459f7c18de294b9cef382f73bec8e8b
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
--- AllCops: DisplayCopNames: true DisplayStyleGuide: true Exclude: - vendor/**/* - pkg/**/* - spec/fixtures/**/* - lib/rzo/trollop.rb - Vagrantfile # Cop's to ignore Style/RedundantReturn: Enabled: false Style/InverseMethods: Enabled: false Style/FrozenStringLiteralComment: Enabled: false Layout/MultilineOperationIndentation: Enabled: false # if / else / end is more clear than conditional assignment Style/ConditionalAssignment: Enabled: false # With this enabled it suggests a change that will break the Gemfile # Also, if name = hsh['name'] is really useful to avoid Unknown method called on # nil object errors. Lint/AssignmentInCondition: Enabled: false Metrics/LineLength: Enabled: false # This is a good idea, but does not line up the rest of the lines making it # harder to read Layout/IndentHash: Enabled: false Style/Next: Enabled: false # If enabled, this cop makes it harder to understand the logic Style/NonNilCheck: Enabled: false Style/TrailingCommaInArrayLiteral: Enabled: false Style/TrailingCommaInHashLiteral: Enabled: false Style/TrailingCommaInArguments: Enabled: false # Cop's that require ruby >= 1.9 Style/HashSyntax: Enabled: false Style/BracesAroundHashParameters: Enabled: false # too many lines is the nature of a Vagrantfile Metrics/BlockLength: Enabled: false Metrics/BlockNesting: Enabled: false Lint/ShadowingOuterLocalVariable: Enabled: false Style/IfInsideElse: Enabled: false
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rzo-0.8.0 | .rubocop.yml |