electron: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:23:06 +01:00
parent c51c095915
commit da716e6b96
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
1 changed files with 12 additions and 12 deletions

View File

@ -1,19 +1,19 @@
cask 'electron' do
version '9.1.1'
sha256 '354078a716b0e86bb7754f8e372318e69ce64a67e782ef25cea3ee3195fb190d'
cask "electron" do
version "9.1.1"
sha256 "354078a716b0e86bb7754f8e372318e69ce64a67e782ef25cea3ee3195fb190d"
# github.com/electron/electron/ was verified as official when first introduced to the cask
url "https://github.com/electron/electron/releases/download/v#{version}/electron-v#{version}-darwin-x64.zip"
appcast 'https://github.com/electron/electron/releases.atom'
name 'Electron'
homepage 'https://electronjs.org/'
appcast "https://github.com/electron/electron/releases.atom"
name "Electron"
homepage "https://electronjs.org/"
app 'Electron.app'
app "Electron.app"
zap trash: [
'~/Library/Application Support/Electron',
'~/Library/Caches/Electron',
'~/Library/Preferences/com.github.electron.helper.plist',
'~/Library/Preferences/com.github.electron.plist',
]
"~/Library/Application Support/Electron",
"~/Library/Caches/Electron",
"~/Library/Preferences/com.github.electron.helper.plist",
"~/Library/Preferences/com.github.electron.plist",
]
end