From f2a0d5e3e53c2ac081792f5f073d8eac35368ab5 Mon Sep 17 00:00:00 2001 From: Daniel Svane Date: Tue, 8 Dec 2020 12:39:59 +0100 Subject: [PATCH] Document the forceExclusion option This was documentet earlier, but was removed at some point --- docs/linting.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/linting.md b/docs/linting.md index 977324375..a4f71a689 100644 --- a/docs/linting.md +++ b/docs/linting.md @@ -48,7 +48,8 @@ or "only": ["array", "of", "cops", "to", "run"], "except": ["array", "of", "cops", "not", "to", "run"], "require": ["array", "of", "ruby", "files", "to", "require"], - "rails": true // requires rubocop-rails gem for RuboCop >= 0.72.0 + "rails": true, // requires rubocop-rails gem for RuboCop >= 0.72.0 + "forceExclusion": true // for ignoring the excluded files from rubocop.yml } } ```