From bf6ed14b5e433a04bf5eac9dbbec75ba1b678de6 Mon Sep 17 00:00:00 2001 From: Adam Townsend Date: Sun, 22 Oct 2023 13:15:09 -0700 Subject: [PATCH] custom parts for rubocop to run. don't worry about block length in many parts. hide extension suggestions --- .rubocop.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 0000000..2d4fe7c --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,6 @@ +AllCops: + NewCops: enable + SuggestExtensions: false + +Metrics/BlockLength: + AllowedMethods: ['describe', 'context', 'route', 'r.on', 'r.post']