forked from ledermann/pingcrm
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.rubocop_todo.yml
88 lines (79 loc) · 3.06 KB
/
.rubocop_todo.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2022-05-13 02:51:41 UTC using RuboCop version 1.29.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 16
# Configuration parameters: EnforcedStyle, Include, AllowedGems.
# SupportedStyles: required, forbidden
# Include: **/*.gemfile, **/Gemfile, **/gems.rb
Bundler/GemVersion:
Exclude:
- 'Gemfile'
# Offense count: 1
# This cop supports safe auto-correction (--auto-correct).
Layout/EmptyLines:
Exclude:
- 'test/test_helper.rb'
# Offense count: 19
# This cop supports safe auto-correction (--auto-correct).
# Configuration parameters: InspectBlocks.
Layout/RedundantLineBreak:
Exclude:
- 'app/controllers/application_controller.rb'
- 'app/controllers/concerns/auth.rb'
- 'app/controllers/concerns/inertia_csrf.rb'
- 'app/controllers/contacts_controller.rb'
- 'app/controllers/dashboard_controller.rb'
- 'app/controllers/organizations_controller.rb'
- 'app/controllers/users_controller.rb'
- 'app/models/user.rb'
- 'config/environments/development.rb'
- 'config/environments/test.rb'
- 'config/initializers/filter_parameter_logging.rb'
- 'db/seeds.rb'
# Offense count: 3
# This cop supports safe auto-correction (--auto-correct).
Layout/SingleLineBlockChain:
Exclude:
- 'test/system/contacts_test.rb'
- 'test/system/organizations_test.rb'
- 'test/system/users_test.rb'
# Offense count: 3
# Configuration parameters: CheckIdentifiers, CheckConstants, CheckVariables, CheckStrings, CheckSymbols, CheckComments, CheckFilepaths, FlaggedTerms.
Naming/InclusiveLanguage:
Exclude:
- 'app/controllers/contacts_controller.rb'
- 'app/controllers/organizations_controller.rb'
- 'app/controllers/users_controller.rb'
# Offense count: 2
# Configuration parameters: Include, AllowReads, AllowWrites.
# Include: app/**/*.rb, lib/**/*.rb
Rails/EnvironmentVariableAccess:
Exclude:
- 'app/services/env.rb'
# Offense count: 22
Rails/I18nLocaleTexts:
Exclude:
- 'app/controllers/contacts_controller.rb'
- 'app/controllers/organizations_controller.rb'
- 'app/controllers/users_controller.rb'
# Offense count: 1
# Configuration parameters: Include.
# Include: db/**/*.rb
Rails/ReversibleMigrationMethodDefinition:
Exclude:
- 'db/migrate/20191201161437_add_devise_to_users.rb'
# Offense count: 9
Rails/SchemaComment:
Exclude:
- 'db/migrate/20191129182209_create_accounts.rb'
- 'db/migrate/20191129182602_create_organizations.rb'
- 'db/migrate/20191129182823_create_contacts.rb'
- 'db/migrate/20191129183932_create_users.rb'
- 'db/migrate/20191201161437_add_devise_to_users.rb'
- 'db/migrate/20191202122725_create_active_storage_tables.active_storage.rb'
- 'db/migrate/20201210064113_add_service_name_to_active_storage_blobs.rb'
- 'db/migrate/20201210064131_create_active_storage_variant_records.rb'