From 2eb408cc2fe3ebd3a9e31dca9db21ea8a9e80740 Mon Sep 17 00:00:00 2001
From: Prathamesh Sonpatki <csonpatki@gmail.com>
Date: Fri, 5 Oct 2018 21:14:15 +0530
Subject: Skip node_modules dir in the rubocop check

- Otherwise it is running the check against all files in node_modules
---
 .rubocop.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.rubocop.yml b/.rubocop.yml
index 33791588cb..615a229432 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -8,6 +8,7 @@ AllCops:
     - '**/vendor/**/*'
     - 'actionpack/lib/action_dispatch/journey/parser.rb'
     - 'railties/test/fixtures/tmp/**/*'
+    - 'node_modules/**/*'
 
 Performance:
   Exclude:
-- 
cgit v1.2.3