๐Ÿ“ฆ amake / srx-ruby

๐Ÿ“„ .rubocop.yml ยท 21 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21inherit_from: .rubocop_todo.yml

plugins:
  - rubocop-performance

inherit_mode:
  merge:
    - Exclude

AllCops:
  TargetRubyVersion: 2.5
  SuggestExtensions: false
  NewCops: enable
  Exclude:
    - '**/*~'

Layout/LineLength:
  Max: 120
  Exclude:
    - 'test/golden_rules_test.rb'