ftp-manager/.rubocop.yml

59 lines
851 B
YAML
Raw Normal View History

2016-08-27 16:32:04 -05:00
AllCops:
Exclude:
- db/schema.rb
- db/seeds.rb
- bin/**/*
- vendor/assets/**/*
Style/AndOr:
Enabled: false
Style/ClassAndModuleChildren:
Exclude:
- test/test_helper.rb
Style/Documentation:
Enabled: false
Style/ExtraSpacing:
Exclude:
- db/migrate/**/*
2016-09-18 09:41:51 -05:00
Style/FrozenStringLiteralComment:
Enabled: true
EnforcedStyle: always
2016-08-27 16:32:04 -05:00
Style/IndentationConsistency:
EnforcedStyle: rails
Exclude:
- config/routes.rb
Style/MethodDefParentheses:
Enabled: false
Style/SpaceBeforeFirstArg:
Exclude:
- config/routes.rb
Style/StringLiterals:
Enabled: false
Metrics/AbcSize:
Exclude:
- db/migrate/**/*
Metrics/LineLength:
Max: 110
Exclude:
- Rakefile
- config/**/*
- lib/tasks/**/*
- test/test_helper.rb
Metrics/MethodLength:
Exclude:
- db/migrate/*
2016-09-11 09:57:55 -05:00
Rails:
Enabled: true