config/.base_rubocop.yml in fablicop-1.2.0 vs config/.base_rubocop.yml in fablicop-1.2.1
- old
+ new
@@ -224,8 +224,18 @@
# Does the variable name for an exception object really matter?
# There are many things to think about before taking care of it.
Naming/RescuedExceptionsVariableName:
Enabled: false
+##################### RSpec ##################################
+
# disabling to not to show errors if there is no when/with/without in the context
RSpec/ContextWording:
+ Enabled: false
+
+# controller specs and request specs are hard to name reasonably
+RSpec/NamedSubject:
+ Enabled: false
+
+# because response validation in `request spec` is expected to result in large rows
+RSpec/ExampleLength:
Enabled: false