Sha256: d38667e6ba8bf7959ad1a5abcac3d92e5b72fa51c25dcd169b6a3b2553bcc267

Contents?: true

Size: 1.39 KB

Versions: 4

Compression:

Stored size: 1.39 KB

Contents

# This is the configuration used to check the rubocop source code.
# Check out: https://github.com/bbatsov/rubocop

AllCops:
  Include:
    - '**/Rakefile'
    - '**/config.ru'
  Exclude:
    - 'vendor/**/*'
    - 'spec/fixtures/**/*'
    - 'node_modules/**/*'
    - 'coverage/**/*'
    - 'db/**/*'
    - 'db/schema.rb'
    - 'db/seeds.rb'
    - 'client/node_modules/**/*'
    - 'bin/**/*'
    - !ruby/regexp /old_and_unused\.rb$/
    - 'spec/react_on_rails/dummy-for-generators/**/*'
    - 'examples/**/*'

Metrics/LineLength:
  Max: 120

Style/StringLiterals:
  EnforcedStyle: double_quotes

Style/Documentation:
  Enabled: false

Lint/AssignmentInCondition:
  Exclude:
    - 'spec/dummy/bin/spring'

# Offense count: 2
Lint/HandleExceptions:
  Exclude:
    - 'spec/dummy/bin/rails'
    - 'spec/dummy/bin/rake'

# Offense count: 1
Metrics/AbcSize:
  Max: 23

# Offense count: 1
# Configuration parameters: CountComments.
Metrics/ClassLength:
  Max: 114

Metrics/ParameterLists:
  Max: 5
  CountKeywordArgs: false

# Offense count: 9
# Configuration parameters: CountComments.
Metrics/MethodLength:
  Max: 38

# Offense count: 1
# Configuration parameters: CountComments.
Metrics/ModuleLength:
  Max: 150

# Offense count: 3
# Configuration parameters: AllowedVariables.
Style/GlobalVars:
  Exclude:
    - 'spec/dummy/config/environments/development.rb'
    - 'spec/dummy-react-013/config/environments/development.rb'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
react_on_rails-1.2.2 .rubocop.yml
react_on_rails-1.2.1 .rubocop.yml
react_on_rails-1.2.0 .rubocop.yml
react_on_rails-1.2.0.rc1 .rubocop.yml