Sha256: b1f333b00d2a6070b6821a05614d49487c34b3093f7e679b07f4074ae47eed01

Contents?: true

Size: 1.67 KB

Versions: 28

Compression:

Stored size: 1.67 KB

Contents

# -*- mode: yaml; -*-
AllCops:
  DisplayCopNames: true
  Exclude:
    - 'templates/**/*'
    - 'spec/**/*'

Style/EmptyLines:
  Enabled: false
Style/LeadingCommentSpace:
  Enabled: false
Style/HashSyntax:
  EnforcedStyle: hash_rockets

# I dislike these test
Style/StringLiterals:
  Enabled: false

Style/RegexpLiteral:
  Enabled: false

# Parenthesis
Style/ParenthesesAroundCondition:
  Enabled: false
Style/RedundantParentheses:
  Enabled: false
Style/TernaryParentheses:
  EnforcedStyle: require_parentheses

# Rules for spaces
Style/EmptyLinesAroundBlockBody:
  EnforcedStyle: no_empty_lines
Style/EmptyLinesAroundClassBody:
  EnforcedStyle: empty_lines_except_namespace
Style/EmptyLinesAroundModuleBody:
  EnforcedStyle: empty_lines_except_namespace

Style/Alias:
  EnforcedStyle: prefer_alias_method

# this one would crash with configatron
Style/MutableConstant:
  Enabled: false

# No I don't want $? to be changed in $CHILD_STATUS...
Style/SpecialGlobalVars:
  Enabled: false

### Metrics
# Rubocop was chosen only for style, and not for complexity or quality checks.
Metrics/BlockLength:
  Enabled: false
Metrics/ClassLength:
  Enabled: false

Metrics/ModuleLength:
  Enabled: false

Metrics/MethodLength:
  Enabled: false

Metrics/BlockNesting:
  Enabled: false

Metrics/AbcSize:
  Enabled: false

Metrics/CyclomaticComplexity:
  Enabled: false

Metrics/ParameterLists:
  Enabled: false

Metrics/LineLength:
  Enabled: false

Style/ParallelAssignment:
  Enabled: false

Style/SpaceInsideBrackets:
  Enabled: false
Style/SpaceInsideParens:
  Enabled: false

# It will be obvious which code is complex, Rubocop should only lint simple
# rules for us.
Metrics/PerceivedComplexity:
  Enabled: false

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
falkorlib-0.9.1 .rubocop.yml
falkorlib-0.9.0 .rubocop.yml
falkorlib-0.8.10 .rubocop.yml
falkorlib-0.8.9 .rubocop.yml
falkorlib-0.8.8 .rubocop.yml
falkorlib-0.8.7 .rubocop.yml
falkorlib-0.8.6 .rubocop.yml
falkorlib-0.8.5 .rubocop.yml
falkorlib-0.8.4 .rubocop.yml
falkorlib-0.8.3 .rubocop.yml
falkorlib-0.8.2 .rubocop.yml
falkorlib-0.8.1 .rubocop.yml
falkorlib-0.7.18 .rubocop.yml
falkorlib-0.7.17 .rubocop.yml
falkorlib-0.7.16 .rubocop.yml
falkorlib-0.7.15 .rubocop.yml
falkorlib-0.7.14 .rubocop.yml
falkorlib-0.7.13 .rubocop.yml
falkorlib-0.7.11 .rubocop.yml
falkorlib-0.7.9 .rubocop.yml