fog/fog-proxmox

View on GitHub
.rubocop_todo.yml

Summary

Maintainability
Test Coverage
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2022-12-01 11:01:10 UTC using RuboCop version 1.39.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.

# Offense count: 4
# Configuration parameters: AllowSafeAssignment.
Lint/AssignmentInCondition:
  Exclude:
    - 'lib/fog/proxmox/helpers/ip_helper.rb'

# Offense count: 1
Lint/MixedRegexpCaptureTypes:
  Exclude:
    - 'lib/fog/proxmox/helpers/cpu_helper.rb'

# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
Lint/PercentStringArray:
  Exclude:
    - 'lib/fog/proxmox/core.rb'

# Offense count: 13
# Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods, CountRepeatedAttributes.
Metrics/AbcSize:
  Max: 46

# Offense count: 1
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods, inherit_mode.
# AllowedMethods: refine
Metrics/BlockLength:
  Max: 40

# Offense count: 2
# Configuration parameters: CountComments, CountAsOne.
Metrics/ClassLength:
  Max: 200

# Offense count: 5
# Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods.
Metrics/CyclomaticComplexity:
  Max: 17

# Offense count: 18
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods.
Metrics/MethodLength:
  Max: 70

# Offense count: 2
# Configuration parameters: CountComments, CountAsOne.
Metrics/ModuleLength:
  Max: 133

# Offense count: 5
# Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods.
Metrics/PerceivedComplexity:
  Max: 19

# Offense count: 3
Naming/AccessorMethodName:
  Exclude:
    - 'lib/fog/proxmox/auth/token/user_token.rb'
    - 'lib/fog/proxmox/network/requests/get_network.rb'
    - 'lib/fog/proxmox/network/requests/get_node.rb'

# Offense count: 6
Naming/ConstantName:
  Exclude:
    - 'lib/fog/proxmox/helpers/ip_helper.rb'

# Offense count: 6
# Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros.
# NamePrefix: is_, has_, have_
# ForbiddenPrefixes: is_, has_, have_
# AllowedMethods: is_a?
# MethodDefinitionMacros: define_method, define_singleton_method
Naming/PredicateName:
  Exclude:
    - 'spec/**/*'
    - 'lib/fog/proxmox/compute/models/disk.rb'
    - 'lib/fog/proxmox/helpers/nic_helper.rb'
    - 'lib/fog/proxmox/identity/models/pool.rb'

# Offense count: 3
RSpec/BeforeAfterAll:
  Exclude:
    - 'spec/spec_helper.rb'
    - 'spec/rails_helper.rb'
    - 'spec/support/**/*.rb'
    - 'spec/compute_spec.rb'
    - 'spec/identity_spec.rb'
    - 'spec/network_spec.rb'

# Offense count: 131
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: SkipBlocks, EnforcedStyle.
# SupportedStyles: described_class, explicit
RSpec/DescribedClass:
  Exclude:
    - 'spec/compute_spec.rb'
    - 'spec/hash_spec.rb'
    - 'spec/helpers/controller_helper_spec.rb'
    - 'spec/helpers/cpu_helper_spec.rb'
    - 'spec/helpers/disk_helper_spec.rb'
    - 'spec/helpers/ip_helper_spec.rb'
    - 'spec/helpers/nic_helper_spec.rb'
    - 'spec/identity_spec.rb'
    - 'spec/network_spec.rb'

# Offense count: 17
# Configuration parameters: CountAsOne.
RSpec/ExampleLength:
  Max: 136

# Offense count: 9
# Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly.
# Include: **/*_spec*rb*, **/spec/**/*
RSpec/FilePath:
  Exclude:
    - 'spec/compute_spec.rb'
    - 'spec/hash_spec.rb'
    - 'spec/helpers/controller_helper_spec.rb'
    - 'spec/helpers/cpu_helper_spec.rb'
    - 'spec/helpers/disk_helper_spec.rb'
    - 'spec/helpers/ip_helper_spec.rb'
    - 'spec/helpers/nic_helper_spec.rb'
    - 'spec/identity_spec.rb'
    - 'spec/network_spec.rb'

# Offense count: 114
# Configuration parameters: AssignmentOnly.
RSpec/InstanceVariable:
  Exclude:
    - 'spec/compute_spec.rb'
    - 'spec/identity_spec.rb'
    - 'spec/network_spec.rb'

# Offense count: 32
# Configuration parameters: AllowSubject.
RSpec/MultipleMemoizedHelpers:
  Max: 12

# Offense count: 2
RSpec/RepeatedDescription:
  Exclude:
    - 'spec/helpers/cpu_helper_spec.rb'

# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
Style/CaseLikeIf:
  Exclude:
    - 'lib/fog/proxmox/auth/token.rb'

# Offense count: 3
# Configuration parameters: AllowedConstants.
Style/Documentation:
  Exclude:
    - 'spec/**/*'
    - 'test/**/*'
    - 'lib/fog/proxmox/auth/token.rb'
    - 'lib/fog/proxmox/auth/token/access_ticket.rb'
    - 'lib/fog/proxmox/auth/token/user_token.rb'

# Offense count: 2
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: always, always_true, never
Style/FrozenStringLiteralComment:
  Exclude:
    - 'lib/fog/proxmox/identity/models/domain.rb'
    - 'lib/fog/proxmox/identity/models/domain_type.rb'

# Offense count: 2
# This cop supports safe autocorrection (--autocorrect).
Style/IfUnlessModifier:
  Exclude:
    - 'lib/fog/proxmox/auth/token/access_ticket.rb'
    - 'lib/fog/proxmox/compute/models/servers.rb'

# Offense count: 12
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: literals, strict
Style/MutableConstant:
  Exclude:
    - 'lib/fog/proxmox/helpers/cpu_helper.rb'
    - 'lib/fog/proxmox/helpers/disk_helper.rb'
    - 'lib/fog/proxmox/helpers/ip_helper.rb'
    - 'lib/fog/proxmox/helpers/nic_helper.rb'

# Offense count: 2
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle, AllowedMethods, AllowedPatterns, IgnoredMethods.
# SupportedStyles: predicate, comparison
Style/NumericPredicate:
  Exclude:
    - 'spec/**/*'
    - 'lib/fog/proxmox/core.rb'
    - 'lib/fog/proxmox/helpers/cpu_helper.rb'

# Offense count: 1
# Configuration parameters: AllowedMethods.
# AllowedMethods: respond_to_missing?
Style/OptionalBooleanParameter:
  Exclude:
    - 'lib/fog/proxmox/identity/models/pool.rb'

# Offense count: 20
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: short, verbose
Style/PreferredHashMethods:
  Exclude:
    - 'lib/fog/proxmox/compute/models/servers.rb'
    - 'lib/fog/proxmox/helpers/nic_helper.rb'
    - 'lib/fog/proxmox/identity/models/domain.rb'
    - 'lib/fog/proxmox/identity/models/pool.rb'
    - 'spec/helpers/controller_helper_spec.rb'
    - 'spec/helpers/nic_helper_spec.rb'

# Offense count: 4
# This cop supports unsafe autocorrection (--autocorrect-all).
Style/RedundantInterpolation:
  Exclude:
    - 'lib/fog/proxmox/helpers/ip_helper.rb'

# Offense count: 11
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: Mode.
Style/StringConcatenation:
  Exclude:
    - 'lib/fog/proxmox/compute/models/server.rb'
    - 'lib/fog/proxmox/compute/models/tasks.rb'
    - 'lib/fog/proxmox/helpers/cpu_helper.rb'
    - 'lib/fog/proxmox/helpers/disk_helper.rb'
    - 'lib/fog/proxmox/helpers/nic_helper.rb'
    - 'lib/fog/proxmox/variables.rb'

# Offense count: 2
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: AllowMethodsWithArguments, AllowedMethods, AllowedPatterns, IgnoredMethods, AllowComments.
# AllowedMethods: respond_to, define_method
Style/SymbolProc:
  Exclude:
    - 'spec/compute_spec.rb'

# Offense count: 16
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, IgnoredPatterns.
# URISchemes: http, https
Layout/LineLength:
  Max: 230