From 9261a27794137490a8810522d6541a62a75a2011 Mon Sep 17 00:00:00 2001 From: Dafydd Jones Date: Fri, 10 Nov 2023 15:37:01 +0000 Subject: [PATCH] test(rubocop): use `AllowedMethods` not deprecated `IgnoredMethods` * see https://github.com/rubocop/rubocop/pull/10829 --- .rubocop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index bf4d107..b7762c4 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -7,7 +7,7 @@ Layout/LineLength: # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`) Max: 88 Metrics/BlockLength: - IgnoredMethods: + AllowedMethods: - control - describe # Increase from default of `25`