Sha256: 9b718fb95a3b0a9851527ba039bea1e16b1a0bdf4e5f3c3dd26c38500163a0ac

Contents?: true

Size: 1.37 KB

Versions: 5

Compression:

Stored size: 1.37 KB

Contents

inherit_from:
  - .rubocop_todo.yml

AllCops:
  Exclude:
    - 'doc/plugins/**'

Rails:
  Enabled: true

Rails/Date:
  Enabled: false

Rails/HttpPositionalArguments:
  Enabled: false

# Don't enforce documentation
Style/Documentation:
  Enabled: false

Metrics/MethodLength:
  Max: 40

Style/TrailingCommaInLiteral:
  Enabled: false

#Style/TrailingCommaInArguments:
#Enabled: false

Style/AccessorMethodName:
  Enabled: false

Style/RedundantSelf:
  Enabled: false

Metrics/ClassLength:
  Max: 500
  Exclude:
       - 'test/**/*'

Style/FileName:
  Exclude:
      - 'db/seeds.d/*'

Style/WordArray:
  Enabled: false

Style/BracesAroundHashParameters:
  Enabled: false

Style/RescueModifier:
  Enabled: false

Style/ClassAndModuleChildren:
  Enabled: false

Style/EachWithObject:
  Enabled: false

Style/GuardClause:
  Enabled: false

Metrics/BlockLength:
  Exclude:
       - 'config/routes.rb'
       - 'lib/foreman_remote_execution/engine.rb'
       - 'test/**/*'

Metrics/ParameterLists:
  Enabled: false

Style/VariableNumber:
  Enabled: false

# a == 0 is not the same as a.zero?, when a is not a number
Style/NumericPredicate:
  Enabled: false

Style/FormatStringToken:
  EnforcedStyle: template

Rails/SkipsModelValidations:
  Enabled: false

Style/SymbolArray:
  Enabled: false

# for compatibility with Foreman 1.15
Rails/ApplicationRecord:
  Enabled: false

Style/FormatString:
  Enabled: false

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
foreman_remote_execution-1.3.7 .rubocop.yml
foreman_remote_execution-1.3.6 .rubocop.yml
foreman_remote_execution-1.4.1 .rubocop.yml
foreman_remote_execution-1.3.5 .rubocop.yml
foreman_remote_execution-1.3.4 .rubocop.yml