1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/.rubocop.yml

41 lines
831 B
YAML

require: rubocop-rails
AllCops:
NewCops: enable
Layout/LineLength:
Max: 140
Metrics/MethodLength:
Max: 35
Metrics/CyclomaticComplexity:
Max: 14
Metrics/PerceivedComplexity:
Max: 14
Metrics/AbcSize:
Max: 45
Metrics/ClassLength:
Max: 210
Metrics/BlockLength:
Max: 30
Exclude:
- 'lib/tasks/**/*.rake'
- 'config/routes.rb'
- 'app/pdfs/pdf/*.rb'
- 'test/**/*.rb'
- '**/*_concern.rb'
Metrics/ParameterLists:
CountKeywordArgs: false
Style/RegexpLiteral:
EnforcedStyle: slashes
Style/EmptyElse:
EnforcedStyle: empty
Style/ClassAndModuleChildren:
EnforcedStyle: compact
Style/AndOr:
EnforcedStyle: conditionals
Style/FormatString:
EnforcedStyle: sprintf
Rails/RedundantPresenceValidationOnBelongsTo:
Enabled: false
Rails/UnknownEnv:
Environments: development, test, staging, production