From a35a7603c2080bb42604af3ef6932366d83aa678 Mon Sep 17 00:00:00 2001 From: "yuuji.yaginuma" Date: Sun, 7 Apr 2019 20:30:14 +0900 Subject: Exclude all `node_modules` from the RuboCop check For avoiding check against `node_modules` in railties's test dir. --- .rubocop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.rubocop.yml') diff --git a/.rubocop.yml b/.rubocop.yml index 54dcaf80f9..b1c68bd06e 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -10,7 +10,7 @@ AllCops: - 'railties/test/fixtures/tmp/**/*' - 'actionmailbox/test/dummy/**/*' - 'actiontext/test/dummy/**/*' - - 'node_modules/**/*' + - '**/node_modules/**/*' Performance: Exclude: -- cgit v1.2.3