Sha256: 808a7aed8a92c76fb8f235deeb75b30597ab7e75ab127c2d09c954ecf4c90b8d
Contents?: true
Size: 1.45 KB
Versions: 3
Compression:
Stored size: 1.45 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 Lint/UnneededDisable: 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/TrailingCommaInLiteral: 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rzo-0.7.0 | .rubocop.yml |
rzo-0.6.0 | .rubocop.yml |
rzo-0.5.0 | .rubocop.yml |