Skip to content

Commit e2095f2

Browse files
committed
initial implementation
1 parent 4dd15df commit e2095f2

10 files changed

+1621
-2
lines changed

.swiftlint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
disabled_rules:
22
- line_length
3-
# - redundant_optional_initialization
3+
- file_length
44

55
opt_in_rules:
6-
- missing_docs
6+
# - missing_docs
77

88
included:
99

Package.swift

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// swift-tools-version: 6.0
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "swift-environment-decoder",
7+
products: [
8+
.library(
9+
name: "EnvironmentDecoder",
10+
targets: ["EnvironmentDecoder"]),
11+
],
12+
targets: [
13+
.target(
14+
name: "EnvironmentDecoder"),
15+
.testTarget(
16+
name: "EnvironmentDecoderTests",
17+
dependencies: ["EnvironmentDecoder"]),
18+
])

0 commit comments

Comments
 (0)