aboutsummaryrefslogtreecommitdiffstats
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorYoshiyuki Hirano <yhirano@me.com>2018-04-20 00:20:33 +0900
committerYoshiyuki Hirano <yhirano@me.com>2018-04-20 00:20:33 +0900
commit4e1972e1ca6936b92e586b273742570b0c666ff8 (patch)
tree3aacaa55e763d8767c7cadfc7900b7bb3d3affff /.rubocop.yml
parent92bb3f6aaaa80fa7add94debbda6373a15f55b64 (diff)
downloadrails-4e1972e1ca6936b92e586b273742570b0c666ff8.tar.gz
rails-4e1972e1ca6936b92e586b273742570b0c666ff8.tar.bz2
rails-4e1972e1ca6936b92e586b273742570b0c666ff8.zip
Add exculude condition in rubocop.yml
* Excluded `railties/test/fixtures/tmp/**/*` from rubocop inspect files * These files are generated after running test in railties
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index eb410376fe..8981f023b4 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -9,6 +9,7 @@ AllCops:
- '**/templates/**/*'
- '**/vendor/**/*'
- 'actionpack/lib/action_dispatch/journey/parser.rb'
+ - 'railties/test/fixtures/tmp/**/*'
# Prefer assert_not_x over refute_x
CustomCops/RefuteNot: