Sha256: 0d7d89ba8c64d29d051b5eb0c4f5abf5be2cdb29bc91fe1a46830c3a9a331b14

Contents?: true

Size: 1.11 KB

Versions: 5

Compression:

Stored size: 1.11 KB

Contents

AllCops:
  Exclude:
    - 'examples/**/*'
    - 'features/**/*'
    - 'gems/**/*'
    - 'refs/**/*'

# This is disabled because some demos use UTF-8
AsciiComments:
  Enabled: false
  
BlockComments:
  Enabled: false

CaseIndentation:
  IndentWhenRelativeTo: 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
  
EmptyLinesAroundBody:
  Enabled: false  

Encoding:
  Enabled: false

FileName:
  Enabled: false
  
IndentationWidth :
  Enabled: false
  
  
# Avoid methods longer than 50 lines of code
MethodLength:
  Max: 50
  CountComments: false 
 
NonNilCheck:
  Enabled: false

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

SpaceInsideBrackets:
  Enabled: false

TrailingWhitespace:
  Enabled: false
  
VariableName:
  Enabled: false
  

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rley-0.2.00 .rubocop.yml
rley-0.1.12 .rubocop.yml
rley-0.1.11 .rubocop.yml
rley-0.1.10 .rubocop.yml
rley-0.1.09 .rubocop.yml