-
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.
Removed .swift-version file, and added explicit spec.swift_version (4…
….2) in podspec. All files (podfile, podspec, and all proj files in xcode) now target iOS 11.4, and Swift 4.2. Incremented the version number.
- Loading branch information
1 parent
754985d
commit cb02739
Showing
5 changed files
with
33 additions
and
6 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,27 @@ | ||
disabled_rules: # rules from the default set that we want turned off | ||
- identifier_name | ||
- legacy_hashing | ||
- statement_position | ||
- todo | ||
- trailing_whitespace | ||
opt_in_rules: | ||
- sorted_imports | ||
- trailing_closure | ||
- empty_count | ||
- empty_string | ||
excluded: # paths to ignore during linting. Takes precedence over `included`. | ||
- Pods | ||
|
||
# configurable rules can be customized from this configuration file | ||
# binary rules can set their severity level | ||
line_length: 145 | ||
function_body_length: | ||
warning: 50 | ||
error: 100 | ||
type_name: | ||
min_length: 3 # only warning | ||
max_length: # warning and error | ||
warning: 42 | ||
error: 50 | ||
function_body_length: | ||
excluded: ".*Test\\.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
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,4 +1,4 @@ | ||
platform :ios, '11.0' | ||
platform :ios, '11.4' | ||
inhibit_all_warnings! | ||
|
||
target 'Concurrency' do | ||
|