Increase number of lines used in Danger feature_category scan
Danger currently reports feature_category as missing on the top level `RSpec.describe` if the describe declaration spans more than 2 lines. OK: ``` RSpec.describe SomeClass, :js, feature_category: 'category' do ``` 'Fetaure category missing': ``` RSpec.describe SomeClass, :js, feature_category: 'category' do ``` This change allows this check to support top level `RSpec.describe` declarations that span up to 5 lines.
想要评论请 注册 或 登录