diff options
author | Željko Filipin <zeljko.filipin@gmail.com> | 2015-03-18 18:59:28 +0100 |
---|---|---|
committer | Dduvall <dduvall@wikimedia.org> | 2015-03-23 18:52:13 +0000 |
commit | bbb16ed91d779f22db044c368f69b0e5baab3e95 (patch) | |
tree | 3ea9d62a23d295b1a96bef6d20a4cfb2cc39b651 /.rubocop.yml | |
parent | 6755869d2078092bae5b10e97b8879ceb9db4395 (diff) | |
download | mediawikicore-bbb16ed91d779f22db044c368f69b0e5baab3e95.tar.gz mediawikicore-bbb16ed91d779f22db044c368f69b0e5baab3e95.zip |
Fixed Style/StringLiterals RuboCop offense
$ bundle exec rubocop --auto-correct
Inspecting 25 files
CC....C.......CCCCCCCCC.C
Offenses:
Gemfile:4:8: C: [Corrected] Prefer single-quoted strings when you don't
need string interpolation or special symbols.
source "https://rubygems.org"
^^^^^^^^^^^^^^^^^^^^^^
…
25 files inspected, 81 offenses detected, 81 offenses corrected
Bug: T91485
Change-Id: Ic6f1337fa465e8c90e5aa7ea3540eb6bfad15af8
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 8b0f91abfeec..61ffc1a04425 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,5 +1,3 @@ -inherit_from: .rubocop_todo.yml - AllCops: Exclude: - 'extensions/**/*' |