1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/.rubocop.yml

91 lines
1.6 KiB
YAML
Raw Normal View History

2018-11-22 14:57:13 -05:00
AllCops:
TargetRubyVersion: 2.6
2018-11-22 14:57:13 -05:00
DisplayCopNames: true
Exclude:
- 'bin/**/*'
- 'db/schema.rb'
2018-11-30 02:26:46 -05:00
- 'lib/tasks/cucumber.rake'
2018-12-06 19:15:41 -05:00
- 'lib/templates/**/*'
2018-11-30 02:26:46 -05:00
- 'script/cucumber'
2018-11-22 14:57:13 -05:00
- 'vendor/**/*'
Layout/AccessModifierIndentation:
EnforcedStyle: outdent
2018-11-26 08:58:09 -05:00
Layout/AlignHash:
EnforcedColonStyle: table
2018-11-22 14:57:13 -05:00
Layout/EmptyLinesAroundArguments:
Enabled: false
2018-11-29 15:57:57 -05:00
Metrics/AbcSize:
Exclude:
- 'db/migrate/*.rb'
2018-11-26 08:58:09 -05:00
Metrics/BlockLength:
Exclude:
2018-12-03 15:04:08 -05:00
- 'config/**/*.rb'
2018-11-29 22:41:57 -05:00
- 'factories/**/*.rb'
2018-12-04 08:50:10 -05:00
- 'lib/capistrano/tasks/**/*.rake'
2018-11-28 09:05:58 -05:00
- 'spec/**/*.rb'
2018-11-26 08:58:09 -05:00
Metrics/LineLength:
Exclude:
- 'config/initializers/simple_form.rb'
- 'config/initializers/simple_form_bootstrap.rb'
Metrics/MethodLength:
Exclude:
- 'db/migrate/*.rb'
2018-11-22 14:57:13 -05:00
Rails:
Enabled: true
2018-12-03 22:16:40 -05:00
Rails/BulkChangeTable:
Enabled: false
2018-12-05 20:22:39 -05:00
Rails/HasAndBelongsToMany:
Exclude:
- 'app/models/role.rb'
2018-11-29 19:17:26 -05:00
Rails/LexicallyScopedActionFilter:
Exclude:
- 'app/controllers/application_controller.rb'
2019-02-01 23:27:42 -05:00
Rails/SkipsModelValidations:
Whitelist:
- update_all
2018-11-22 14:57:13 -05:00
Style/AndOr:
EnforcedStyle: conditionals
2018-11-29 16:28:20 -05:00
Style/ClassAndModuleChildren:
Exclude:
- 'app/policies/**/*.rb'
2018-11-29 16:28:20 -05:00
- 'app/controllers/**/*.rb'
2018-11-22 14:57:13 -05:00
Style/Documentation:
Enabled: false
Style/DoubleNegation:
Enabled: false
2018-12-08 19:28:25 -05:00
Style/GlobalVars:
Exclude:
- 'features/support/env.rb'
- 'spec/spec_helper.rb'
Style/RescueModifier:
Exclude:
- 'spec/**/*.rb'
2018-11-22 14:57:13 -05:00
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: comma