From 0528ed723ee9a89982e595dcc9c64167f6ed1204 Mon Sep 17 00:00:00 2001 From: Michael Abon Date: Mon, 29 Jan 2024 09:58:11 -0600 Subject: [PATCH] Enable rubocops --- .rubocop.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index c83a01d8..81ce64bc 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -226,3 +226,11 @@ Style/ReturnNilInPredicateMethodDefinition: # new in 1.53 Enabled: true Style/YAMLFileRead: # new in 1.53 Enabled: true +Lint/ItWithoutArgumentsInBlock: # new in 1.59 + Enabled: true +Lint/LiteralAssignmentInCondition: # new in 1.58 + Enabled: true +Style/SingleLineDoEndBlock: # new in 1.57 + Enabled: true +Style/SuperWithArgsParentheses: # new in 1.58 + Enabled: true