summaryrefslogtreecommitdiff
path: root/.rubocop.yml
blob: 9b25b0999275be01a4f62da113f2b6e21efa1049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
AllCops:
  Exclude:
    - 'tryout/**/*'
    - "vendor/**/.*"
    - "vendor/**/*"
  NewCops: enable
  TargetRubyVersion: 2.6

inherit_from: .rubocop_todo.yml

Style/DoubleNegation:
  Exclude:
    - 'lib/net/ssh/key_factory.rb'

Layout/LineLength:
  Max: 150
  Exclude:
    - 'test/**/*.rb'
    - 'net-ssh.gemspec'

Style/EmptyLiteral:
  Enabled: false