|
| 1 | +plugins: |
| 2 | + - rubocop-md |
| 3 | + - rubocop-socketry |
| 4 | + |
| 5 | +AllCops: |
| 6 | + DisabledByDefault: true |
| 7 | + |
| 8 | +# Socketry specific rules: |
| 9 | + |
| 10 | +Layout/ConsistentBlankLineIndentation: |
| 11 | + Enabled: true |
| 12 | + |
| 13 | +Layout/BlockDelimiterSpacing: |
| 14 | + Enabled: true |
| 15 | + |
| 16 | +Style/GlobalExceptionVariables: |
| 17 | + Enabled: true |
| 18 | + |
| 19 | +# General Layout rules: |
| 20 | + |
| 21 | +Layout/IndentationStyle: |
| 22 | + Enabled: true |
| 23 | + EnforcedStyle: tabs |
| 24 | + |
| 25 | +Layout/InitialIndentation: |
| 26 | + Enabled: true |
| 27 | + |
| 28 | +Layout/IndentationWidth: |
| 29 | + Enabled: true |
| 30 | + Width: 1 |
| 31 | + |
| 32 | +Layout/IndentationConsistency: |
| 33 | + Enabled: true |
| 34 | + EnforcedStyle: normal |
| 35 | + |
| 36 | +Layout/BlockAlignment: |
| 37 | + Enabled: true |
| 38 | + |
| 39 | +Layout/EndAlignment: |
| 40 | + Enabled: true |
| 41 | + EnforcedStyleAlignWith: start_of_line |
| 42 | + |
| 43 | +Layout/BeginEndAlignment: |
| 44 | + Enabled: true |
| 45 | + EnforcedStyleAlignWith: start_of_line |
| 46 | + |
| 47 | +Layout/RescueEnsureAlignment: |
| 48 | + Enabled: true |
| 49 | + |
| 50 | +Layout/ElseAlignment: |
| 51 | + Enabled: true |
| 52 | + |
| 53 | +Layout/DefEndAlignment: |
| 54 | + Enabled: true |
| 55 | + |
| 56 | +Layout/CaseIndentation: |
| 57 | + Enabled: true |
| 58 | + EnforcedStyle: end |
| 59 | + |
| 60 | +Layout/CommentIndentation: |
| 61 | + Enabled: true |
| 62 | + |
| 63 | +Layout/FirstHashElementIndentation: |
| 64 | + Enabled: true |
| 65 | + EnforcedStyle: consistent |
| 66 | + |
| 67 | +Layout/EmptyLinesAroundClassBody: |
| 68 | + Enabled: true |
| 69 | + |
| 70 | +Layout/EmptyLinesAroundModuleBody: |
| 71 | + Enabled: true |
| 72 | + |
| 73 | +Layout/EmptyLineAfterMagicComment: |
| 74 | + Enabled: true |
| 75 | + |
| 76 | +Layout/SpaceInsideBlockBraces: |
| 77 | + Enabled: true |
| 78 | + EnforcedStyle: no_space |
| 79 | + SpaceBeforeBlockParameters: false |
| 80 | + |
| 81 | +Layout/SpaceAroundBlockParameters: |
| 82 | + Enabled: true |
| 83 | + EnforcedStyleInsidePipes: no_space |
| 84 | + |
| 85 | +Layout/FirstArrayElementIndentation: |
| 86 | + Enabled: true |
| 87 | + EnforcedStyle: consistent |
| 88 | + |
| 89 | +Layout/ArrayAlignment: |
| 90 | + Enabled: true |
| 91 | + EnforcedStyle: with_fixed_indentation |
| 92 | + |
| 93 | +Layout/FirstArgumentIndentation: |
| 94 | + Enabled: true |
| 95 | + EnforcedStyle: consistent |
| 96 | + |
| 97 | +Layout/ArgumentAlignment: |
| 98 | + Enabled: true |
| 99 | + EnforcedStyle: with_fixed_indentation |
| 100 | + |
| 101 | +Layout/ClosingParenthesisIndentation: |
| 102 | + Enabled: true |
| 103 | + |
| 104 | +Style/FrozenStringLiteralComment: |
| 105 | + Enabled: true |
| 106 | + |
| 107 | +Style/StringLiterals: |
| 108 | + Enabled: true |
| 109 | + EnforcedStyle: double_quotes |
0 commit comments