visual-studio-code: fix RuboCop style.

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

View File

@ -1,27 +1,27 @@
cask 'visual-studio-code' do
version '1.47.2'
sha256 '2b16daa05729df5a08a6b096c94830a424beb0066b857b8f2611573862f3f50a'
cask "visual-studio-code" do
version "1.47.2"
sha256 "2b16daa05729df5a08a6b096c94830a424beb0066b857b8f2611573862f3f50a"
url "https://update.code.visualstudio.com/#{version}/darwin/stable"
appcast 'https://vscode-update.azurewebsites.net/api/update/darwin/stable/VERSION'
name 'Microsoft Visual Studio Code'
name 'VS Code'
homepage 'https://code.visualstudio.com/'
appcast "https://vscode-update.azurewebsites.net/api/update/darwin/stable/VERSION"
name "Microsoft Visual Studio Code"
name "VS Code"
homepage "https://code.visualstudio.com/"
auto_updates true
app 'Visual Studio Code.app'
app "Visual Studio Code.app"
binary "#{appdir}/Visual Studio Code.app/Contents/Resources/app/bin/code"
zap trash: [
'~/Library/Application Support/Code',
'~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.microsoft.vscode.sfl*',
'~/Library/Caches/com.microsoft.VSCode',
'~/Library/Caches/com.microsoft.VSCode.ShipIt',
'~/Library/Preferences/ByHost/com.microsoft.VSCode.ShipIt.*.plist',
'~/Library/Preferences/com.microsoft.VSCode.helper.plist',
'~/Library/Preferences/com.microsoft.VSCode.plist',
'~/Library/Saved Application State/com.microsoft.VSCode.savedState',
'~/.vscode',
]
"~/Library/Application Support/Code",
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.microsoft.vscode.sfl*",
"~/Library/Caches/com.microsoft.VSCode",
"~/Library/Caches/com.microsoft.VSCode.ShipIt",
"~/Library/Preferences/ByHost/com.microsoft.VSCode.ShipIt.*.plist",
"~/Library/Preferences/com.microsoft.VSCode.helper.plist",
"~/Library/Preferences/com.microsoft.VSCode.plist",
"~/Library/Saved Application State/com.microsoft.VSCode.savedState",
"~/.vscode",
]
end