We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b5ad23 commit fe67e0fCopy full SHA for fe67e0f
CodeEdit/Features/Settings/Pages/TextEditingSettings/Models/TextEditingSettings.swift
@@ -92,7 +92,7 @@ extension SettingsData {
92
}
93
94
/// Explicit decoder init for setting default values when key is not present in `JSON`
95
- init(from decoder: Decoder) throws {
+ init(from decoder: Decoder) throws { // swiftlint:disable:this function_body_length
96
let container = try decoder.container(keyedBy: CodingKeys.self)
97
self.defaultTabWidth = try container.decodeIfPresent(Int.self, forKey: .defaultTabWidth) ?? 4
98
self.indentOption = try container.decodeIfPresent(
0 commit comments