mirror of
				https://github.com/varvet/pundit.git
				synced 2022-11-09 12:30:11 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			104 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
inherit_from: .rubocop_todo.yml
 | 
						|
AllCops:
 | 
						|
  DisplayCopNames: true
 | 
						|
  TargetRubyVersion: 1.9
 | 
						|
  Exclude:
 | 
						|
    - "gemfiles/**/*"
 | 
						|
    - "vendor/**/*"
 | 
						|
    - "lib/generators/**/*"
 | 
						|
 | 
						|
Metrics/BlockLength:
 | 
						|
  Exclude:
 | 
						|
    - "**/*_spec.rb"
 | 
						|
 | 
						|
Metrics/MethodLength:
 | 
						|
  Max: 40
 | 
						|
 | 
						|
Metrics/ModuleLength:
 | 
						|
  Max: 200
 | 
						|
  Exclude:
 | 
						|
    - "**/*_spec.rb"
 | 
						|
 | 
						|
Metrics/LineLength:
 | 
						|
  Max: 120
 | 
						|
 | 
						|
Metrics/AbcSize:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Metrics/CyclomaticComplexity:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Metrics/PerceivedComplexity:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Style/StructInheritance:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Style/AlignParameters:
 | 
						|
  EnforcedStyle: with_fixed_indentation
 | 
						|
 | 
						|
Style/StringLiterals:
 | 
						|
  EnforcedStyle: double_quotes
 | 
						|
 | 
						|
Style/StringLiteralsInInterpolation:
 | 
						|
  EnforcedStyle: double_quotes
 | 
						|
 | 
						|
Style/ClosingParenthesisIndentation:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Style/OneLineConditional:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Style/AndOr:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Style/Not:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Documentation:
 | 
						|
  Enabled: false # TODO: Enable again once we have more docs
 | 
						|
 | 
						|
Style/CaseIndentation:
 | 
						|
  EnforcedStyle: case
 | 
						|
  SupportedStyles:
 | 
						|
    - case
 | 
						|
    - end
 | 
						|
  IndentOneStep: true
 | 
						|
 | 
						|
Style/PercentLiteralDelimiters:
 | 
						|
  PreferredDelimiters:
 | 
						|
    '%w': "[]"
 | 
						|
    '%W': "[]"
 | 
						|
 | 
						|
Style/AccessModifierIndentation:
 | 
						|
  EnforcedStyle: outdent
 | 
						|
 | 
						|
Style/SignalException:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Style/IndentationWidth:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Style/TrivialAccessors:
 | 
						|
  ExactNameMatch: true
 | 
						|
 | 
						|
Lint/EndAlignment:
 | 
						|
  EnforcedStyleAlignWith: variable
 | 
						|
 | 
						|
Lint/DefEndAlignment:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Lint/HandleExceptions:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Style/SpecialGlobalVars:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Style/TrivialAccessors:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Style/IndentHash:
 | 
						|
  Enabled: false
 | 
						|
 | 
						|
Style/DoubleNegation:
 | 
						|
  Enabled: false
 |