Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/fluentd/fluent-plugin-loki/.rubocop.yml

27 lines
407 B

require: rubocop-rspec
AllCops:
Exclude:
- 'bin/**'
- 'test/**/*.rb'
Metrics/BlockLength:
Exclude:
- 'Rakefile'
- '**/*.rake'
- 'spec/**/*.rb'
Max: 60
Metrics/MethodLength:
Max: 50
Metrics/LineLength:
Max: 120
Metrics/ClassLength:
Max: 150
Metrics/AbcSize:
Max: 35
Style/GuardClause:
Enabled: false
RSpec/ExampleLength:
Max: 100
RSpec/MultipleExpectations:
Max: 10