Amire80 has uploaded a new change for review. https://gerrit.wikimedia.org/r/191012
Change subject: Make the Gemfile more like the one in the MW repo ...................................................................... Make the Gemfile more like the one in the MW repo The Gemfile in the mediawiki/extensions/VisualEditor repo has single quotes and colon hash syntax. Change-Id: Ia501532f4a74241bfaa86ea5fb1c66df75378595 --- M .rubocop_todo.yml M Gemfile 2 files changed, 3 insertions(+), 3 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/VisualEditor/VisualEditor refs/changes/12/191012/1 diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 8b75d40..9da2899 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -23,7 +23,7 @@ # Cop supports --auto-correct. # Configuration parameters: SupportedStyles. Style/HashSyntax: - EnforcedStyle: hash_rockets + Enabled: false # Offense count: 4 # Cop supports --auto-correct. diff --git a/Gemfile b/Gemfile index 62dbd82..eea2055 100755 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,3 @@ -source "https://rubygems.org" +source 'https://rubygems.org' -gem "rubocop", :require => false +gem 'rubocop', require: false -- To view, visit https://gerrit.wikimedia.org/r/191012 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ia501532f4a74241bfaa86ea5fb1c66df75378595 Gerrit-PatchSet: 1 Gerrit-Project: VisualEditor/VisualEditor Gerrit-Branch: master Gerrit-Owner: Amire80 <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
