Skip to content

Commit

Permalink
RuboCop: auto-gen-config TODO file
Browse files Browse the repository at this point in the history
  • Loading branch information
olleolleolle committed Aug 16, 2017
1 parent b78c2c5 commit 49b6cdf
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
inherit_from: .rubocop_todo.yml

AllCops:
DisplayCopNames: true
TargetRubyVersion: 2.2
Expand Down
52 changes: 52 additions & 0 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2017-08-16 10:25:30 +0200 using RuboCop version 0.47.1.
# 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: 1
# Configuration parameters: AllowSafeAssignment.
Lint/AssignmentInCondition:
Exclude:
- 'lib/mixlib/log.rb'

# Offense count: 2
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Max: 129

# Offense count: 1
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 12

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

# Offense count: 2
Style/ClassVars:
Exclude:
- 'lib/mixlib/log/formatter.rb'

# Offense count: 2
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: format, sprintf, percent
Style/FormatString:
Exclude:
- 'lib/mixlib/log/formatter.rb'

# Offense count: 1
# Configuration parameters: AllowedVariables.
Style/GlobalVars:
Exclude:
- 'spec/spec_helper.rb'

# Offense count: 1
Style/MethodMissing:
Exclude:
- 'lib/mixlib/log.rb'

0 comments on commit 49b6cdf

Please sign in to comment.