-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
47 lines (41 loc) · 909 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
41
42
43
44
45
46
47
inherit_gem:
common-rubocop: config/base.yml
inherit_mode:
merge:
- Exclude
require:
- common/rubocop/cop/lint_env
AllCops:
Exclude:
- '**/tmp/**/*'
- '**/log/**/*'
- 'db/schema.rb'
- 'db/statistics_schema.rb'
Bundler/GemComment:
Enabled: true
Exclude:
- 'lib/**/*'
IgnoredGems:
- rails
- pg
- redis
- puma
- sidekiq
Bundler/OrderedGems:
Enabled: true
Lint/Env:
Enabled: true
Include:
- '**/*.rb'
Exclude:
- '**/config/environments/**/*'
- '**/config/*.rb'
- '**/config/initializers/redis.rb'
- '**/config/initializers/slim.rb'
- '**/config/initializers/cache.rb'
- '**/config/initializers/content_security_policy.rb'
- '**/spec/*_helper.rb'
- '**/testing/*.rb'
- '**/spec/**/support/**/*'
- 'lib/generators/**/*'
- 'engines/core_by/public/models/core_by/sdk/application_direct_record.rb'