1
0
Fork 0
mirror of https://github.com/paper-trail-gem/paper_trail.git synced 2022-11-09 11:33:19 -05:00
paper-trail-gem--paper_trail/.rubocop_todo.yml
Jared Beck f099b61540 Convert test/unit/model_test.rb to rspec
- Test against ruby 2.3.4 (was 2.3.1)
- Troubleshooting time comparison in test
- Test should not care about array order
2017-05-28 20:43:35 -04:00

41 lines
729 B
YAML

require: rubocop-rspec
# Remove these configuration records
# one by one as the offenses are removed from the code base.
Metrics/AbcSize:
Max: 22 # Goal: 15
Metrics/CyclomaticComplexity:
Max: 8 # Goal: 6
Metrics/PerceivedComplexity:
Max: 9 # Goal: 7
Style/FrozenStringLiteralComment:
Enabled: false
RSpec/BeforeAfterAll:
Enabled: false
RSpec/FilePath:
Enabled: false
RSpec/InstanceVariable:
Exclude:
- spec/paper_trail/associations_spec.rb
- spec/paper_trail/model_spec.rb
RSpec/MessageSpies:
Enabled: false
RSpec/NamedSubject:
Enabled: false
RSpec/NestedGroups:
Exclude:
- spec/paper_trail/associations_spec.rb
- spec/paper_trail/model_spec.rb
Security/YAMLLoad:
Enabled: false