Merge pull request #3213 from kristinalim/fix-rubocop_block_length_ignore_it

Ignore `it` in Rubocop BlockLength
This commit is contained in:
Maikel
2018-12-18 11:42:14 +11:00
committed by GitHub

View File

@@ -187,7 +187,7 @@ Metrics/AbcSize:
Max: 15
Metrics/BlockLength:
ExcludedMethods: ["describe", "context"]
ExcludedMethods: ["context", "describe", "it"]
Metrics/BlockNesting:
Max: 3