Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .codecov.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,7 @@ fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output

# JetBrains IDE
.idea/
*.iml
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.0
5.9
19 changes: 10 additions & 9 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
included:
- Example
- Sources
- Tests

Expand All @@ -12,8 +13,6 @@ analyzer_rules:
- unused_import

only_rules:
- accessibility_label_for_image
- accessibility_trait_for_button
- anonymous_argument_in_multiline_closure
- array_init
# - attributes
Expand Down Expand Up @@ -309,11 +308,12 @@ file_name:
excluded:
- main.swift
prefix_pattern: ''
suffix_pattern: '[+][A-z][A-z]+'
nested_type_separator: ''
suffix_pattern: '([+][A-z][A-z]+)+'
nested_type_separator: '.'

file_types_order:
order:
- supporting_type
- main_type
- extension
- preview_provider
Expand All @@ -323,8 +323,8 @@ force_try:
severity: warning

function_body_length:
warning: 40
error: 400
warning: 50
error: 500

function_parameter_count:
warning: 6
Expand Down Expand Up @@ -363,7 +363,7 @@ identifier_name:
- y
- z
- w
allowed_symbols: []
allowed_symbols: [_]
validates_start_with_lowercase: warning

implicit_return:
Expand Down Expand Up @@ -399,10 +399,10 @@ modifier_order:
preferred_modifier_order:
- acl
- setterACL
- final
- override
- owned
- mutators
- final
- typeMethods
- required
- convenience
Expand Down Expand Up @@ -516,7 +516,8 @@ type_name:
max_length:
warning: 50
error: 500
excluded: []
excluded:
- ID
allowed_symbols: []
validates_start_with_lowercase: warning
validate_protocols: true
Expand Down
1 change: 1 addition & 0 deletions .system-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
15.7
1 change: 1 addition & 0 deletions .xcode-runtime-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.0
2 changes: 1 addition & 1 deletion .xcode-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.1
16.0
2 changes: 1 addition & 1 deletion DictionaryCoder.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Pod::Spec.new do |spec|
spec.author = { "Almaz Ibragimov" => "almazrafi@gmail.com" }
spec.source = { :git => "https://github.com/almazrafi/DictionaryCoder.git", :tag => "#{spec.version}" }

spec.swift_version = '6.0'
spec.swift_version = '5.9'
spec.requires_arc = true
spec.source_files = 'Sources/**/*.swift'

Expand Down
112 changes: 60 additions & 52 deletions DictionaryCoder.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1410"
LastUpgradeVersion = "1640"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1410"
LastUpgradeVersion = "1640"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1410"
LastUpgradeVersion = "1640"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1410"
LastUpgradeVersion = "1640"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Loading