-
Notifications
You must be signed in to change notification settings - Fork 375
/
.standard_todo.yml
47 lines (45 loc) · 1.21 KB
/
.standard_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
# This file is used to ignore specific rules for specific files or directories.
---
ignore:
# After quite some discussion on the team, we decided to make an exception to the
# "standard-isn't-supposed-to-be-configured" thing to allow for trailing comma, see
# https://github.com/standardrb/standard/issues/611 for a discussion
- '**/**':
- Style/TrailingCommaInArguments
- Style/TrailingCommaInArrayLiteral
- Style/TrailingCommaInHashLiteral
- Style/StringLiterals
# This disables standardrb for the rest of dd-trace-rb (other than profiling)
- .pryrc
- .simplecov
- Appraisals
- datadog.gemspec
- Gemfile
- Rakefile
- Steepfile
- appraisal/**/**
- benchmarks/**/**
- gemfiles/**/**
- integration/**/**
- lib-injection/**/**
- ext/libdatadog_extconf_helpers.rb
- ext/libdatadog_api/**/**
- lib/*
- lib/datadog/*
- lib/datadog/appsec/**/**
- lib/datadog/core/**/**
- lib/datadog/kit/**/**
- lib/datadog/opentelemetry/**/**
- lib/datadog/tracing/**/**
- spec/*
- spec/datadog/*
- spec/datadog/appsec/**/**
- spec/datadog/benchmark/**/**
- spec/datadog/core/**/**
- spec/datadog/di/integration/*_test_class*.rb
- spec/datadog/kit/**/**
- spec/datadog/tracing/**/**
- spec/support/**/**
- tasks/**/**
- tools/**/**
- yard/**/**