Skip to content

Commit e2e8a0d

Browse files
Release 3.0.7
1 parent 23c18b9 commit e2e8a0d

File tree

223 files changed

+3084
-842
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

223 files changed

+3084
-842
lines changed

.swiftformat

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
--exclude Package.swift,.build,vendor,Carthage,DerivedData,build
1+
--exclude Package.swift,.build,vendor,Carthage,DerivedData,build,**/Generated
22

33
# format options
44
--swiftversion 5.2
@@ -12,6 +12,12 @@
1212
--wraparguments preserve
1313
--wrapcollections preserve
1414

15+
#disable
16+
--disable preferKeyPath
17+
1518
# rules
1619

17-
--enable isEmpty
20+
--enable isEmpty
21+
--allman false
22+
--elseposition same-line
23+
--disable elseOnSameLine, wrapMultilineStatementBraces, extensionAccessControl

.swiftlint.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
disabled_rules: # rule identifiers to exclude from running
22
- trailing_comma
3+
- operator_whitespace
34
opt_in_rules:
45
- attributes
56
- empty_count
67
- force_unwrapping
78
- unneeded_parentheses_in_closure_argument
89
- unavailable_function
910
- trailing_closure
11+
- strict_fileprivate
1012
- sorted_imports
1113
- sorted_first_last
1214
- single_test_class
@@ -28,7 +30,6 @@ opt_in_rules:
2830
- file_name
2931
- fatal_error_message
3032
- explicit_init
31-
- empty_xctest_method
3233
- empty_string
3334
- discouraged_optional_collection
3435
- closure_end_indentation
@@ -37,12 +38,19 @@ excluded: # paths to ignore during linting. Takes precedence over `included`.
3738
- .build/
3839
- vendor/
3940
- Carthage/
40-
- .idea/
4141
- DerivedData/
42+
- Sources/eRpApp/Generated/*
4243
nesting:
4344
type_level: 3
4445
line_length: 120
46+
file_length:
47+
warning: 500
48+
error: 1200
4549
type_name:
50+
min_length: 3
51+
max_length:
52+
warning: 40
53+
error: 50
4654
allowed_symbols: ["_Previews"]
4755
custom_rules:
4856
nimble_fail_with_description:
@@ -59,3 +67,4 @@ custom_rules:
5967
regex: "(\/\/[[:space:]]*Created by)"
6068
message: "Source must not contain author"
6169
severity: warning
70+

Cartfile.resolved

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
github "gematik/openssl-swift" "1.0.0"
1+
github "gematik/openssl-swift" "1.0.1"
22
github "gematik/asn1kit" "1.0.16"
33
github "gematik/ref-GemCommonsKit" "1.2.0"
4-
github "Quick/Nimble" "v9.2.0"
4+
github "Quick/Nimble" "v9.2.1"
55
github "SwiftCommon/DataKit" "1.1.0"
66
github "hectr/swift-stream-reader" "0.3.0"
77
github "swiftsocket/SwiftSocket" "2e6ba27140a29fae8a6331ba4463312e0c71a6b0"

IntegrationTests/CardSimulationTerminalTestCase/CardSimulationTerminalResource.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 2021 gematik GmbH
2+
// Copyright (c) 2022 gematik GmbH
33
//
44
// Licensed under the Apache License, Version 2.0 (the License);
55
// you may not use this file except in compliance with the License.

IntegrationTests/CardSimulationTerminalTestCase/CardSimulationTerminalTestCase.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 2021 gematik GmbH
2+
// Copyright (c) 2022 gematik GmbH
33
//
44
// Licensed under the Apache License, Version 2.0 (the License);
55
// you may not use this file except in compliance with the License.

IntegrationTests/HealthCardAccess/PublisherIntegrationTest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 2021 gematik GmbH
2+
// Copyright (c) 2022 gematik GmbH
33
//
44
// Licensed under the Apache License, Version 2.0 (the License);
55
// you may not use this file except in compliance with the License.

IntegrationTests/HealthCardControl/AuthenticateChallengeE256Test.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 2021 gematik GmbH
2+
// Copyright (c) 2022 gematik GmbH
33
//
44
// Licensed under the Apache License, Version 2.0 (the License);
55
// you may not use this file except in compliance with the License.

IntegrationTests/HealthCardControl/AuthenticateChallengeR2048Test.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 2021 gematik GmbH
2+
// Copyright (c) 2022 gematik GmbH
33
//
44
// Licensed under the Apache License, Version 2.0 (the License);
55
// you may not use this file except in compliance with the License.

IntegrationTests/HealthCardControl/CardChannelTypeExtVersionIntegrationTest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 2021 gematik GmbH
2+
// Copyright (c) 2022 gematik GmbH
33
//
44
// Licensed under the Apache License, Version 2.0 (the License);
55
// you may not use this file except in compliance with the License.

IntegrationTests/HealthCardControl/DetermineCardAidIntegrationTest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 2021 gematik GmbH
2+
// Copyright (c) 2022 gematik GmbH
33
//
44
// Licensed under the Apache License, Version 2.0 (the License);
55
// you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)