-
Notifications
You must be signed in to change notification settings - Fork 1
/
Workspace.swift
40 lines (29 loc) · 1.17 KB
/
Workspace.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
Workspace.swift
This source file is part of the SDGInterface open source project.
https://sdggiesbrecht.github.io/SDGInterface
Copyright ©2018–2024 Jeremy David Giesbrecht and the SDGInterface project contributors.
Soli Deo gloria.
Licensed under the Apache Licence, Version 2.0.
See http://www.apache.org/licenses/LICENSE-2.0 for licence information.
*/
import WorkspaceConfiguration
let configuration = WorkspaceConfiguration()
configuration._applySDGDefaults()
configuration.documentation.currentVersion = Version(0, 15, 3)
configuration.documentation.projectWebsite = URL(
string: "https://sdggiesbrecht.github.io/SDGInterface"
)!
configuration.documentation.documentationURL = URL(
string: "https://sdggiesbrecht.github.io/SDGInterface"
)!
configuration.documentation.api.yearFirstPublished = 2018
configuration.documentation.repositoryURL = URL(
string: "https://github.com/SDGGiesbrecht/SDGInterface"
)!
configuration.documentation.localizations = ["🇨🇦EN"]
configuration._applySDGOverrides()
configuration._validateSDGStandards()
configuration.testing.exemptionTokens.insert(
TestCoverageExemptionToken("codingNotSupported", scope: .previousLine)
)