Files
sing-box-for-apple/Frameworks/TreeSitterJSON5/Sources/TreeSitterJSON5Runestone/TreeSitterIndentationScopes+Helpers.swift
T
2025-11-26 22:25:52 +08:00

8 lines
211 B
Swift

import Runestone
public extension TreeSitterIndentationScopes {
static var json5: TreeSitterIndentationScopes {
TreeSitterIndentationScopes(indent: ["object", "array"], outdent: ["}", "]"])
}
}