@@ -19,24 +19,11 @@ AllCops:
1919 TargetRubyVersion : 2.7
2020 NewCops : enable
2121
22- Bundler/OrderedGems :
23- Description : Gems should be alphabetically sorted within groups.
24- Enabled : false
25-
2622Layout/AccessModifierIndentation :
2723 Description : Modifiers should be indented as deep as method definitions,
2824 or as deep as the class/module keyword, depending on configuration.
2925 EnforcedStyle : outdent
3026
31- # Open for revision would like table style but the impact
32- # would probably be huge
33- Layout/HashAlignment :
34- Enabled : false
35-
36- Layout/HeredocIndentation :
37- Description : Checks the indentation of the here document bodies.
38- Enabled : false
39-
4027Layout/LineLength :
4128 Description : Checks the length of lines in the source code.
4229 AllowURI : true
@@ -72,10 +59,6 @@ Metrics/BlockNesting:
7259Metrics/ClassLength :
7360 Max : 300
7461
75- Style/Next :
76- Description : Prefer `if` guards over `next` inside loops for readability.
77- Enabled : false
78-
7962Metrics/ModuleLength :
8063 Description : Avoid modules longer than 100 lines of code.
8164 Max : 300
@@ -138,22 +121,6 @@ Style/CollectionMethods:
138121 find : " detect"
139122 find_all : " select"
140123
141- Style/Documentation :
142- Description : Checks for missing top-level documentation of classes and modules.
143- Enabled : false
144-
145- Style/DoubleNegation :
146- Description : Checks for uses of double negation (!!).
147- StyleGuide : https://github.com/rubocop-hq/ruby-style-guide#no-bang-bang
148- Enabled : false
149-
150- Style/EnvHome :
151- Enabled : false
152-
153- Style/ExplicitBlockArgument :
154- # capturing as a proc has a performance hit, so is a case by case choice
155- Enabled : false
156-
157124Style/FrozenStringLiteralComment :
158125 Description :
159126 Add the frozen_string_literal comment to the top of files to help transition
@@ -162,19 +129,10 @@ Style/FrozenStringLiteralComment:
162129 Exclude :
163130 - " spec/fixtures/**/*"
164131
165- Style/GuardClause :
166- Description : Use a guard clause instead of wrapping the code inside a conditional expression.
167- Enabled : false
168-
169132Style/HashSyntax :
170133 Description : Checks hash literal syntax.
171134 EnforcedStyle : ruby19
172135
173- Style/RegexpLiteral :
174- Description : Use / or %r around regular expressions.
175- StyleGuide : https://github.com/rubocop-hq/ruby-style-guide#percent-r
176- Enabled : false
177-
178136Style/SpecialGlobalVars :
179137 Description : Looks for uses of Perl-style global variables.
180138 Exclude :
0 commit comments