summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorKoichi ITO <lol@wut.com>2017-05-30 06:34:12 +0900
committerKoichi ITO <lol@wut.com>2017-05-30 07:19:00 +0900
commitf20285c0d38e59b0061997dc3cead94666731655 (patch)
tree4fc25734b87edef23488702257d933477f9ac63a /.rubocop.yml
parentb3047f8c3909703123558e4f22c6ada37e019702 (diff)
downloadbundler-f20285c0d38e59b0061997dc3cead94666731655.tar.gz
[RuboCop] Update to 0.49.1
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml30
1 files changed, 16 insertions, 14 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 96c9106550..d1241ec52f 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -21,35 +21,40 @@ Lint/EndAlignment:
Lint/UnusedMethodArgument:
Enabled: false
-# Style
+# Layout
-Style/AccessModifierIndentation:
+Layout/AccessModifierIndentation:
EnforcedStyle: outdent
+Layout/AlignParameters:
+ EnforcedStyle: with_fixed_indentation
+
+Layout/MultilineOperationIndentation:
+ EnforcedStyle: indented
+
+Layout/SpaceInsideBlockBraces:
+ SpaceBeforeBlockParameters: false
+
+Layout/DotPosition:
+ EnforcedStyle: trailing
+
+# Style
+
Style/Alias:
EnforcedStyle: prefer_alias_method
-Style/AlignParameters:
- EnforcedStyle: with_fixed_indentation
-
Style/FrozenStringLiteralComment:
EnforcedStyle: always
Style/MultilineBlockChain:
Enabled: false
-Style/MultilineOperationIndentation:
- EnforcedStyle: indented
-
Style/PerlBackrefs:
Enabled: false
Style/SingleLineBlockParams:
Enabled: false
-Style/SpaceInsideBlockBraces:
- SpaceBeforeBlockParameters: false
-
Style/TrivialAccessors:
Enabled: false
@@ -83,9 +88,6 @@ Style/HashSyntax:
Style/Lambda:
Enabled: false
-Style/DotPosition:
- EnforcedStyle: trailing
-
Style/EachWithObject:
Enabled: false