Update .rubocop.yml

This commit is contained in:
0x1eef 2024-05-13 16:05:08 -03:00
parent bcc36ed2c6
commit 1312cff63c
3 changed files with 3 additions and 1 deletions

View file

@ -34,3 +34,5 @@ Layout/EmptyLineBetweenDefs:
Enabled: false
Style/TrivialAccessors:
Enabled: false
Style/MultilineIfModifier:
Enabled: false

View file

@ -1,2 +1,3 @@
# frozen_string_literal: true
require_relative "bsd/control"

View file

@ -14,7 +14,6 @@ module BSD::Control
def test_available_features_stdout
assert_match %r|\A(The [a-zA-Z0-9_]+ feature is available\n){9}\z|,
cmd("ruby", readme_example("1_available_features.rb")).stdout
end
private