feat(RES-35): Force JSONEncoder output formatting with .sortedKeys (#15)
All checks were successful
gitea-openium/resgen.swift/pipeline/head This commit looks good
All checks were successful
gitea-openium/resgen.swift/pipeline/head This commit looks good
Reviewed-on: #15
This commit is contained in:
parent
756de4f1de
commit
ccda606af5
@ -67,7 +67,7 @@ struct ParsedImage {
|
||||
|
||||
func generateContentJson(isVector: Bool) -> String? {
|
||||
let encoder = JSONEncoder()
|
||||
encoder.outputFormatting = .prettyPrinted
|
||||
encoder.outputFormatting = [.prettyPrinted, .sortedKeys]
|
||||
|
||||
let imageContent = generateImageContent(isVector: isVector)
|
||||
|
||||
|
@ -150,7 +150,7 @@ enum StringsFileGenerator {
|
||||
static func generateXcStringsFileContentFromRootObject(rootObject: Root) -> String {
|
||||
do {
|
||||
let encoder = JSONEncoder()
|
||||
encoder.outputFormatting = [.prettyPrinted]
|
||||
encoder.outputFormatting = [.prettyPrinted, .sortedKeys]
|
||||
|
||||
let json = try encoder.encode(rootObject)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user