From 2910a89d6c59b997a3896f05c6ad7fb65c26f813 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Wed, 9 Dec 2020 18:28:42 +0100 Subject: Add autoupdater --- .rubocop.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .rubocop.yml (limited to '.rubocop.yml') diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 0000000..440bede --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,30 @@ +AllCops: + Exclude: + - 'vendor/**/*' + - '.git/**/*' + - 'bin/rubocop' + - 'slackbuilds/**/*' + +Style/Documentation: + Enabled: false + +Style/TrailingCommaInHashLiteral: + EnforcedStyleForMultiline: consistent_comma + +Style/FrozenStringLiteralComment: + Exclude: + - '**/db/migrate/*' + +Layout/MultilineMethodCallIndentation: + EnforcedStyle: indented + +Layout/ArgumentAlignment: + EnforcedStyle: with_fixed_indentation + +Layout/EndAlignment: + EnforcedStyleAlignWith: variable + +Metrics/BlockLength: + ExcludedMethods: + - describe + - refine -- cgit v1.2.3