forked from fjordllc/bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
40 lines (36 loc) · 832 Bytes
/
.rubocop.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
require:
- rubocop-minitest
- rubocop-capybara
inherit_gem:
rubocop-fjord:
- config/rubocop.yml
- config/rails.yml
Metrics/ClassLength:
Exclude:
- test/**/*
- app/controllers/products_controller.rb
- app/controllers/reports_controller.rb
- app/controllers/users_controller.rb
- app/mailers/activity_mailer.rb
- app/models/event.rb
- app/models/practice.rb
- app/models/user.rb
- app/models/product.rb
- app/models/report.rb
- app/notifiers/activity_notifier.rb
Metrics/ModuleLength:
Exclude:
- app/decorators/user_decorator.rb
AllCops:
Exclude:
- '**/templates/**/*'
- '**/vendor/**/*'
- app/views/**/*
- config/**/*
- config.ru
- node_modules/**/*
- db/migrate/*
- db/schema.rb
- storage/**/*
- tmp/**/*
- bin/**/*