From 98831a4867f60f7b7ca02bebd8771ca23940e9c5 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Mon, 26 Feb 2018 17:33:38 +0200 Subject: [PATCH] Exclude plugins dir from rubocop and codeclimate config Signed-off-by: Dmitriy Zaporozhets --- .codeclimate.yml | 1 + .rubocop.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index b02fe54a4ff..d80f57c9947 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -45,3 +45,4 @@ exclude_paths: - log/ - backups/ - coverage-javascript/ +- plugins/ diff --git a/.rubocop.yml b/.rubocop.yml index 24edb641657..293f61fb725 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -17,6 +17,7 @@ AllCops: - 'bin/**/*' - 'generator_templates/**/*' - 'builds/**/*' + - 'plugins/**/*' CacheRootDirectory: tmp # This cop checks whether some constant value isn't a -- GitLab