From edeb9a46ec7132f97ce2da196f90432be7b36a0b Mon Sep 17 00:00:00 2001 From: Colin Darie Date: Mon, 29 Apr 2024 00:16:24 +0200 Subject: [PATCH] fix(rubocop): better perf in local --- .rubocop.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index e4f06ef32..ee20baacd 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -11,7 +11,7 @@ inherit_mode: - Include AllCops: - TargetRubyVersion: 3.2 + TargetRubyVersion: 3.3 DisabledByDefault: true SuggestExtensions: false NewCops: enable @@ -23,6 +23,8 @@ AllCops: - "bin/*" - "node_modules/**/*" - "vendor/**/*" + - "storage/**/*" + - "tmp/**/*" DS/AddConcurrentIndex: Enabled: true