From acd7f5714ee2f8d37ac47b745ce341870563cd2d Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 2 Nov 2018 17:17:35 +0000 Subject: [PATCH] rubocop.yml: configure Hash alignment. --- Library/.rubocop.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Library/.rubocop.yml b/Library/.rubocop.yml index d6cfcb03bc..7a6800c76b 100644 --- a/Library/.rubocop.yml +++ b/Library/.rubocop.yml @@ -19,6 +19,11 @@ FormulaAuditStrict: NewFormulaAudit: Enabled: false +# make our hashes consistent +Layout/AlignHash: + EnforcedHashRocketStyle: table + EnforcedColonStyle: table + # `system` is a special case and aligns on second argument Layout/AlignParameters: Enabled: false