blob: 099bf35b92756d61154d469022b014c7af795423 [file] [log] [blame]
Dmytro Shteflyukdf22bb12025-12-20 13:41:21 -05001plugins:
2 - rubocop-performance
3 - rubocop-rspec
4
5AllCops:
6 DisabledByDefault: true
7 SuggestExtensions: false
8 TargetRubyVersion: 2.7
9 Exclude:
10 - "**/vendor/**/*"
11
Dmytro Shteflyukf5c80a42026-03-08 19:09:43 -040012Layout/EmptyLines:
13 Enabled: true
14
Dmytro Shteflyuk3b0ab4d2026-03-11 17:46:48 -040015Layout/EmptyLinesAroundBlockBody:
16 Enabled: true
17
18Layout/ExtraSpacing:
19 Enabled: true
20
21Layout/IndentationConsistency:
22 Enabled: true
23
24Layout/LeadingCommentSpace:
25 Enabled: true
26
Dmytro Shteflyukf5c80a42026-03-08 19:09:43 -040027Layout/LeadingEmptyLines:
28 Enabled: true
29
Dmytro Shteflyuk3b0ab4d2026-03-11 17:46:48 -040030Layout/SpaceAfterComma:
31 Enabled: true
32
33Layout/SpaceAroundEqualsInParameterDefault:
34 Enabled: true
35
36Layout/SpaceInsideBlockBraces:
37 Enabled: true
38
Dmytro Shteflyukf5c80a42026-03-08 19:09:43 -040039Layout/TrailingEmptyLines:
40 Enabled: true
41
42Layout/TrailingWhitespace:
43 Enabled: true