-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy path.rubocop.yml
More file actions
44 lines (44 loc) · 1.11 KB
/
.rubocop.yml
File metadata and controls
44 lines (44 loc) · 1.11 KB
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
41
42
43
44
Style/Documentation:
Enabled: false
AllCops:
NewCops: enable
Exclude:
- vendor/bundle/**/*
- gemfiles/vendor/bundle/**/*
- "bin/*"
- "db/schema.rb"
- "config/sitemap.rb"
- "config/initializers/warning.rb"
- "config/environments/*"
- "db/migrate/20220402162051_add_service_name_to_active_storage_blobs.active_storage.rb"
- "db/migrate/20220402162052_create_active_storage_variant_records.active_storage.rb"
- "db/migrate/20220406051518_create_ahoy_visits_and_events.rb"
- "db/migrate/20230111165728_add_email_count_to_subscribers_import.rb"
- "app/views/public_pages/*.builder"
Metrics/MethodLength:
Exclude:
- "db/migrate/*"
Metrics/AbcSize:
Exclude:
- "db/migrate/*"
Metrics/ClassLength:
Exclude:
- "app/models/*"
Layout/LineLength:
Exclude:
- "app/dashboards/*"
- "db/migrate/*"
Style/HashSyntax:
Exclude:
- "**/*"
Lint/RedundantCopDisableDirective:
Exclude:
- "db/seeds.rb"
- "app/models/summary_message.rb"
Metrics/BlockLength:
Exclude:
- "config/routes.rb"
- "db/seeds.rb"
Rails/I18nLocaleTexts:
Exclude:
- "**/*"