forked from DataDog/dd-trace-rb
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.rubocop.yml
More file actions
39 lines (32 loc) · 933 Bytes
/
Copy path.rubocop.yml
File metadata and controls
39 lines (32 loc) · 933 Bytes
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
require:
- standard
- standard-custom
- standard-performance
- rubocop-performance
inherit_gem:
standard: config/base.yml
standard-custom: config/base.yml
standard-performance: config/base.yml
AllCops:
TargetRubyVersion: 2.5
Exclude:
- appraisal/**/**
- gemfiles/**/**
- integration/**/**
- lib/datadog/**/vendor/**/*
- lib/datadog/profiling/ext/exec_monkey_patch.rb
- vendor/bundle/**/*
- "*.rb" # test files at the root
NewCops: disable
SuggestExtensions: false
# The cops disabled below should stay in sync with .standard_todo.yml's
# "**/**" ignore list (Layout/LeadingCommentSpace has an extra reason
# there) so it stays clear which tool is, or is not, enforcing each cop.
Style/TrailingCommaInArguments:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: false
Layout/LeadingCommentSpace:
Enabled: false