-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
125 changed files
with
1,930 additions
and
5,396 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github "nvzqz/FileKit" "develop" | ||
github "nvzqz/FileKit" | ||
github "jdhealy/PrettyColors" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github "nvzqz/FileKit" "020e322f586d573668a846a5f2b9eee26beb2ca2" | ||
github "nvzqz/FileKit" "v3.0.0" | ||
github "jdhealy/PrettyColors" "v3.0.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
included: | ||
- Sources | ||
|
||
# rule identifiers to exclude from running | ||
disabled_rules: | ||
- trailing_newline | ||
- trailing_whitespace | ||
- valid_docs | ||
- valid_docs | ||
- function_body_length | ||
- cyclomatic_complexity | ||
- variable_name | ||
|
||
# some rules are only opt-in | ||
opt_in_rules: | ||
- empty_count | ||
- missing_docs | ||
- empty_count | ||
- missing_docs | ||
|
||
# configurable rules can be customized from this configuration file | ||
line_length: 200 | ||
line_length: 200 |
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
Carthage/Checkouts/FileKit/FileKit.playground/Contents.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/*: | ||
# FileKit | ||
Use this playground to try out FileKit | ||
*/ | ||
import Cocoa | ||
import FileKit | ||
import XCPlayground | ||
|
||
extension Path { | ||
static let SharedPlaygroundData = Path(url: XCPlaygroundSharedDataDirectoryURL)! | ||
} | ||
|
||
let shared = Path.SharedPlaygroundData | ||
let sample = TextFile(path: shared/"filekit_sample.txt") | ||
try? sample.write("Hello there!") | ||
try? sample.read() |
4 changes: 4 additions & 0 deletions
4
Carthage/Checkouts/FileKit/FileKit.playground/contents.xcplayground
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<playground version='5.0' target-platform='osx' display-mode='rendered'> | ||
<timeline fileName='timeline.xctimeline'/> | ||
</playground> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.