mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-05 00:05:35 -04:00
28 lines
413 B
YAML
28 lines
413 B
YAML
inherit_from: .rubocop_todo.yml
|
|
|
|
require:
|
|
- rubocop-performance
|
|
|
|
AllCops:
|
|
DisplayCopNames: true
|
|
DisplayStyleGuide: true
|
|
TargetRubyVersion: 2.3
|
|
|
|
Metrics/BlockLength:
|
|
Exclude:
|
|
- spec/**/*.rb
|
|
- examples/**/*.rb
|
|
|
|
Metrics/LineLength:
|
|
Exclude:
|
|
- spec/**/*.rb
|
|
- examples/**/*.rb
|
|
|
|
Style/DoubleNegation:
|
|
Enabled: false
|
|
|
|
Style/Documentation:
|
|
Exclude:
|
|
- 'spec/**/*'
|
|
- 'examples/**/*'
|