config/.base_rubocop.yml in fablicop-1.9.0 vs config/.base_rubocop.yml in fablicop-1.10.0
- old
+ new
@@ -68,11 +68,16 @@
# f x
# }.map { |x|
# f x
# f x
# }.compact
+# do ... . end, and further method chaining from the end would be confusing to look at
+# Don't use method chaining in auto-correct, and modify it yourself.
+# Allow it in specs because it looks nice.
Style/BlockDelimiters:
- Enabled: false
+ AutoCorrect: false
+ Exclude:
+ - "spec/**/*"
Style/MultilineBlockChain:
Enabled: false
Style/EmptyMethod:
Enabled: false