Sha256: 3ec1a1dc428653925e1d0b25bf0da3f941ee997e478f9014365e97e936d71d6a

Contents?: true

Size: 1.63 KB

Versions: 13

Compression:

Stored size: 1.63 KB

Contents

AllCops:
  Exclude:
    - 'features/**/*'
    - 'exp/**/*'    
    - 'gems/**/*'
    - 'refs/**/*'
    
# This is disabled because some demos use UTF-8
AsciiComments:
  Enabled: false
  
Attr:
  Enabled: false
  
BlockComments:
  Enabled: false
  
CaseIndentation:
  EnforcedStyle: end
  IndentOneStep: true

# Rubocop enforces the use of is_a? instead of kind_of?
# Which is contrary to modelling practice.
ClassCheck:
  Enabled: false
  
ClassLength:
  Max: 250
  CountComments: false  

ConstantName:  
  Enabled: false
  
CyclomaticComplexity:
  Enabled: false
  
DefWithParentheses:  
  Enabled: false
  
Documentation:
  Enabled: false
  
EmptyLines:
  Enabled: false 

Encoding:
  Enabled: false
  
EndOfLine:
  Enabled: false
#  SupportedStyles: lf
  
  
IndentationWidth :
  Enabled: false
  
# Disable this because it produces false negatives
Naming/HeredocDelimiterNaming:
  Enabled: false
  
# Enabled after end of support of Rubies < 2.3
Layout/IndentHeredoc:
  Enabled: false

Metrics/AbcSize:
  Max: 50
  
# Avoid methods longer than 50 lines of code
Metrics/MethodLength:
  Max: 50
  CountComments: false 

# Avoid modules longer than 200 lines of code 
Metrics/ModuleLength:
  CountComments: false
  Max: 200  

Metrics/PerceivedComplexity:
  Enabled: true
  Max: 50
 
NonNilCheck:
  Enabled: false

NumericLiterals:
  Enabled: false
  
RaiseArgs:
  Enabled: false
  
RedundantReturn:
  Enabled: false

SpaceInsideBrackets:
  Enabled: false

TrailingWhitespace:
  Enabled: false
  
VariableName:
  Enabled: false

VariableNumber:
  Enabled: false  

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
rley-0.6.00 .rubocop.yml
rley-0.5.14 .rubocop.yml
rley-0.5.13 .rubocop.yml
rley-0.5.12 .rubocop.yml
rley-0.5.11 .rubocop.yml
rley-0.5.10 .rubocop.yml
rley-0.5.09 .rubocop.yml
rley-0.5.08 .rubocop.yml
rley-0.5.07 .rubocop.yml
rley-0.5.06 .rubocop.yml
rley-0.5.05 .rubocop.yml
rley-0.5.04 .rubocop.yml
rley-0.5.03 .rubocop.yml