08f8de84eb/Gemfile.lock (L38)
Code Climate is using RuboCop v0.46.0.
Change several rules to maintain compatibility.
		
			
				
	
	
		
			110 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			110 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| AllCops:
 | |
|   TargetRubyVersion: 2.3
 | |
|   Exclude:
 | |
|   - 'spec/**/*'
 | |
|   - 'db/**/*'
 | |
|   - 'app/views/**/*'
 | |
|   - 'config/**/*'
 | |
|   - 'bin/*'
 | |
|   - 'Rakefile'
 | |
|   - 'node_modules/**/*'
 | |
|   - 'Vagrantfile'
 | |
|   - 'vendor/**/*'
 | |
| 
 | |
| Bundler/OrderedGems:
 | |
|   Enabled: false
 | |
| 
 | |
| Layout/AccessModifierIndentation:
 | |
|   EnforcedStyle: indent
 | |
| 
 | |
| Layout/EmptyLineAfterMagicComment:
 | |
|   Enabled: false
 | |
| 
 | |
| Layout/SpaceInsideHashLiteralBraces:
 | |
|   EnforcedStyle: space
 | |
| 
 | |
| Metrics/AbcSize:
 | |
|   Max: 100
 | |
| 
 | |
| Metrics/BlockLength:
 | |
|   Exclude:
 | |
|     - 'lib/tasks/**/*'
 | |
| 
 | |
| Metrics/BlockNesting:
 | |
|   Max: 3
 | |
| 
 | |
| Metrics/ClassLength:
 | |
|   CountComments: false
 | |
|   Max: 200
 | |
| 
 | |
| Metrics/CyclomaticComplexity:
 | |
|   Max: 15
 | |
| 
 | |
| Metrics/LineLength:
 | |
|   AllowURI: true
 | |
|   Enabled: false
 | |
| 
 | |
| Metrics/MethodLength:
 | |
|   CountComments: false
 | |
|   Max: 55
 | |
| 
 | |
| Metrics/ModuleLength:
 | |
|   CountComments: false
 | |
|   Max: 200
 | |
| 
 | |
| Metrics/ParameterLists:
 | |
|   Max: 4
 | |
|   CountKeywordArgs: true
 | |
| 
 | |
| Metrics/PerceivedComplexity:
 | |
|   Max: 10
 | |
| 
 | |
| Rails:
 | |
|   Enabled: true
 | |
| 
 | |
| Rails/HasAndBelongsToMany:
 | |
|   Enabled: false
 | |
| 
 | |
| Rails/SkipsModelValidations:
 | |
|   Enabled: false
 | |
| 
 | |
| Style/ClassAndModuleChildren:
 | |
|   Enabled: false
 | |
| 
 | |
| Style/CollectionMethods:
 | |
|   Enabled: true
 | |
|   PreferredMethods:
 | |
|     find_all: 'select'
 | |
| 
 | |
| Style/Documentation:
 | |
|   Enabled: false
 | |
| 
 | |
| Style/DoubleNegation:
 | |
|   Enabled: true
 | |
| 
 | |
| Style/FrozenStringLiteralComment:
 | |
|   Enabled: true
 | |
| 
 | |
| Style/GuardClause:
 | |
|   Enabled: false
 | |
| 
 | |
| Style/Lambda:
 | |
|   Enabled: false
 | |
| 
 | |
| Style/PercentLiteralDelimiters:
 | |
|   PreferredDelimiters:
 | |
|     '%i': '()'
 | |
|     '%w': '()'
 | |
| 
 | |
| Style/PerlBackrefs:
 | |
|   AutoCorrect: false
 | |
| 
 | |
| Style/RegexpLiteral:
 | |
|   Enabled: false
 | |
| 
 | |
| Style/SymbolArray:
 | |
|   Enabled: false
 | |
| 
 | |
| Style/TrailingCommaInLiteral:
 | |
|   EnforcedStyleForMultiline: 'comma'
 |