Sha256: e9a866e257b6edd6860530f0b0d02a0846f95e701cdc66a039b44e0a4981aba8
Contents?: true
Size: 1.42 KB
Versions: 6
Compression:
Stored size: 1.42 KB
Contents
# Layout configuration overrides # https://docs.rubocop.org/rubocop/1.5/cops_layout.html Layout/ConditionPosition: Description: >- Checks for condition placed in a confusing position relative to the keyword. StyleGuide: 'https://github.com/rubocop/ruby-style-guide#same-line-condition' Enabled: false Layout/DotPosition: Description: 'Checks the position of the dot in multi-line method calls.' EnforcedStyle: leading Layout/EmptyLineAfterMagicComment: Enabled: true Layout/ExtraSpacing: Description: 'Do not use unnecessary spacing.' Enabled: true Layout/InitialIndentation: Description: >- Checks the indentation of the first non-blank non-comment line in a file. Enabled: false Layout/LineLength: Max: 120 Layout/MultilineMethodCallIndentation: Description: >- Checks indentation of method calls with the dot operator that span more than one line. Enabled: true EnforcedStyle: indented_relative_to_receiver Layout/MultilineOperationIndentation: Description: >- Checks indentation of binary operations that span more than one line. Enabled: true EnforcedStyle: indented Layout/ParameterAlignment: Description: 'Here we check if the parameters on a multi-line method call or definition are aligned.' StyleGuide: 'https://github.com/rubocop/ruby-style-guide#no-double-indent' Enabled: false Layout/HashAlignment: EnforcedHashRocketStyle: table EnforcedColonStyle: table
Version data entries
6 entries across 6 versions & 1 rubygems