aboutsummaryrefslogtreecommitdiffstats
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-02-01 14:16:55 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-02-01 14:20:11 +0900
commit7ebfb319ffbfc1f9d3dc5439052ae06019bf4290 (patch)
tree64d61f0307323d11f46e8ca153d3eed8e8355d00 /.rubocop.yml
parent6127b8d9203d7ce852d103ff1686621f9aca292f (diff)
downloadrails-7ebfb319ffbfc1f9d3dc5439052ae06019bf4290.tar.gz
rails-7ebfb319ffbfc1f9d3dc5439052ae06019bf4290.tar.bz2
rails-7ebfb319ffbfc1f9d3dc5439052ae06019bf4290.zip
Enable `Lint/ErbNewArguments` cop to avoid the deprecated arguments warning
Related 5754a29a974d31cab2b4392716b9825a3d910a69. And follows Ruby standard library style https://github.com/ruby/ruby/commit/3406c5d.
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index dce1a30d9f..618817daca 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -179,6 +179,9 @@ Layout/TrailingWhitespace:
Style/UnneededPercentQ:
Enabled: true
+Lint/ErbNewArguments:
+ Enabled: true
+
# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
Lint/RequireParentheses:
Enabled: true