mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
Make swiftlint happier
This commit is contained in:
@@ -13,7 +13,7 @@ public enum FileSystemType {
|
||||
case other
|
||||
/**
|
||||
One of many UNIX-like systems.
|
||||
|
||||
|
||||
- Note: Modern macOS systems also fall into this category.
|
||||
*/
|
||||
case unix
|
||||
|
||||
@@ -13,7 +13,8 @@ class SevenZipCommand: Command {
|
||||
let shortDescription = "Extracts 7-Zip container"
|
||||
|
||||
let info = Flag("-i", "--info", description: "Print list of entries in container and their attributes")
|
||||
let extract = Key<String>("-e", "--extract", description: "Extract container into specified directory (it must be empty or not exist)")
|
||||
let extract = Key<String>("-e", "--extract",
|
||||
description: "Extract container into specified directory (it must be empty or not exist)")
|
||||
|
||||
let verbose = Flag("--verbose", description: "Print the list of extracted files and directories.")
|
||||
|
||||
|
||||
@@ -17,7 +17,8 @@ class TarCommand: Command {
|
||||
let xz = Flag("-x", "--xz", description: "Decompress with XZ first")
|
||||
|
||||
let info = Flag("-i", "--info", description: "Print list of entries in container and their attributes")
|
||||
let extract = Key<String>("-e", "--extract", description: "Extract container into specified directory (it must be empty or not exist)")
|
||||
let extract = Key<String>("-e", "--extract",
|
||||
description: "Extract container into specified directory (it must be empty or not exist)")
|
||||
|
||||
let verbose = Flag("--verbose", description: "Print the list of extracted files and directories.")
|
||||
|
||||
|
||||
@@ -13,7 +13,8 @@ class ZipCommand: Command {
|
||||
let shortDescription = "Extracts ZIP container"
|
||||
|
||||
let info = Flag("-i", "--info", description: "Print list of entries in container and their attributes")
|
||||
let extract = Key<String>("-e", "--extract", description: "Extract container into specified directory (it must be empty or not exist)")
|
||||
let extract = Key<String>("-e", "--extract",
|
||||
description: "Extract container into specified directory (it must be empty or not exist)")
|
||||
|
||||
let verbose = Flag("--verbose", description: "Print the list of extracted files and directories.")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user