aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMarkus Reiter2017-03-05 22:20:07 +0100
committerGitHub2017-03-05 22:20:07 +0100
commit67ec76d1492fbb03959a782a85c4fb985d6a5884 (patch)
tree89490f7a16c1112ec4e5cb76a3182b70c158daf8 /Library
parent642f2a04500311045618cb94ed893e09c8546848 (diff)
parent7abc0aaa742a67228643c8fc5f890487591d6c9a (diff)
downloadbrew-67ec76d1492fbb03959a782a85c4fb985d6a5884.tar.bz2
Merge pull request #2270 from reitermarkus/rubocop-force-default-config
Use `--force-default-config` option for `brew cask style`.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cask/lib/hbc/cli/style.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/cli/style.rb b/Library/Homebrew/cask/lib/hbc/cli/style.rb
index d3e44382d..a64a1dbe7 100644
--- a/Library/Homebrew/cask/lib/hbc/cli/style.rb
+++ b/Library/Homebrew/cask/lib/hbc/cli/style.rb
@@ -54,9 +54,9 @@ module Hbc
def default_args
[
"--require", "rubocop-cask",
- "--config", "/dev/null", # always use `rubocop-cask` default config
- "--format", "simple",
- "--force-exclusion"
+ "--force-default-config",
+ "--force-exclusion",
+ "--format", "simple"
]
end