OSDN Git Service

swiftlint 'trailing_semicolon' の警告を修正
authormasakih <masakih@users.sourceforge.jp>
Sun, 12 Mar 2017 12:49:54 +0000 (21:49 +0900)
committermasakih <masakih@users.sourceforge.jp>
Sun, 12 Mar 2017 12:49:54 +0000 (21:49 +0900)
.swiftlint.yml
KCD/CoreDataCore.swift

index 4398f2f..df01bad 100644 (file)
@@ -20,7 +20,6 @@ disabled_rules:
     - return_arrow_whitespace
     - statement_position
     - todo
-    - trailing_semicolon
     - trailing_whitespace
 
 
index 90b62d1..b594d88 100644 (file)
@@ -102,7 +102,7 @@ private class CoreDataRemover {
             try FileManager.default.removeItem(at: url)
         }
         catch {
-            print("Could not remove file for URL (\(url))");
+            print("Could not remove file for URL (\(url))")
         }
     }
 }