Make swiftlint happier

This commit is contained in:
Timofey Solomko
2017-11-05 00:45:12 +03:00
parent 5a7b8dc812
commit 8d41bc7130
4 changed files with 7 additions and 4 deletions
+1 -1
View File
@@ -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
+2 -1
View File
@@ -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.")
+2 -1
View File
@@ -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.")
+2 -1
View File
@@ -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.")