forked from nicklockwood/SwiftFormat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOptions.swift
732 lines (671 loc) · 26.1 KB
/
Options.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
//
// Options.swift
// SwiftFormat
//
// Created by Nick Lockwood on 21/10/2016.
// Copyright 2016 Nick Lockwood
//
// Distributed under the permissive MIT license
// Get the latest version from here:
//
// https://github.com/nicklockwood/SwiftFormat
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
import Foundation
/// The indenting mode to use for #if/#endif statements
public enum IndentMode: String, CaseIterable {
case indent
case noIndent = "no-indent"
case outdent
public init?(rawValue: String) {
switch rawValue {
case "indent":
self = .indent
case "no-indent", "noindent":
self = .noIndent
case "outdent":
self = .outdent
default:
return nil
}
}
}
/// Wrap mode for arguments
public enum WrapMode: String, CaseIterable {
case beforeFirst = "before-first"
case afterFirst = "after-first"
case preserve
case disabled
case `default`
public init?(rawValue: String) {
switch rawValue {
case "before-first", "beforefirst":
self = .beforeFirst
case "after-first", "afterfirst":
self = .afterFirst
case "preserve":
self = .preserve
case "disabled":
self = .disabled
case "default":
self = .default
default:
return nil
}
}
}
/// Wrap enum cases
public enum WrapEnumCases: String, CaseIterable {
case always
case withValues = "with-values"
}
/// Argument type for stripping
public enum ArgumentStrippingMode: String, CaseIterable {
case unnamedOnly = "unnamed-only"
case closureOnly = "closure-only"
case all = "always"
}
// Wrap mode for @ attributes
public enum AttributeMode: String, CaseIterable {
case prevLine = "prev-line"
case sameLine = "same-line"
case preserve
}
/// Argument type for else position
public enum ElsePosition: String, CaseIterable {
case sameLine = "same-line"
case nextLine = "next-line"
case auto
}
/// Where to place the access control keyword of an extension
public enum ExtensionACLPlacement: String, CaseIterable {
case onExtension = "on-extension"
case onDeclarations = "on-declarations"
}
/// Wrapping behavior for the return type of a function declaration
public enum WrapReturnType: String, CaseIterable {
case ifMultiline = "if-multiline"
case preserve
}
/// Wrapping behavior for effects (`async`, `throws`)
public enum WrapEffects: String, CaseIterable {
case preserve
/// `async` and `throws` are wrapped to the line after the closing paren
/// if the function spans multiple lines
case ifMultiline = "if-multiline"
/// `async` and `throws` are never wrapped, and are always included on the same line as the closing paren
case never
}
/// Annotation which should be kept when removing a redundant type
public enum RedundantType: String, CaseIterable {
/// Preserves the type as a part of the property definition:
/// `let foo: Foo = Foo()` becomes `let foo: Foo = .init()`
case explicit
/// Uses type inference to omit the type in the property definition:
/// `let foo: Foo = Foo()` becomes `let foo = Foo()`
case inferred
/// Uses `.inferred` for properties within local scopes (method bodies, etc.),
/// but `.explicit` for globals and properties within types.
/// - This is because type checking for globals and type properties
/// using inferred types can be more expensive.
/// https://twitter.com/uint_min/status/1441448033988722691?s=21
case inferLocalsOnly = "infer-locals-only"
}
/// Argument type for empty brace spacing behavior
public enum EmptyBracesSpacing: String, CaseIterable {
case spaced
case noSpace = "no-space"
case linebreak
}
/// Wrapping behavior for multi-line ternary operators
public enum TernaryOperatorWrapMode: String, CaseIterable {
/// Wraps ternary operators using the default `wrap` behavior,
/// which performs the minimum amount of wrapping necessary.
case `default`
/// Wraps long / multi-line ternary operators before each of the component operators
case beforeOperators = "before-operators"
}
/// Whether or not to remove `-> Void` from closures
public enum ClosureVoidReturn: String, CaseIterable {
case remove
case preserve
}
/// Version number wrapper
public struct Version: RawRepresentable, Comparable, ExpressibleByStringLiteral, CustomStringConvertible {
public let rawValue: String
public static let undefined = Version(rawValue: "0")!
public init(stringLiteral value: String) {
self.init(rawValue: value)!
}
public init?(rawValue: String) {
let rawValue = rawValue.trimmingCharacters(in: .whitespacesAndNewlines)
guard CharacterSet.decimalDigits.contains(rawValue.unicodeScalars.first ?? " ") else {
return nil
}
self.rawValue = rawValue
}
public static func < (lhs: Version, rhs: Version) -> Bool {
lhs.rawValue.compare(
rhs.rawValue,
options: .numeric,
locale: Locale(identifier: "en_US")
) == .orderedAscending
}
public var description: String {
rawValue
}
}
/// Argument type for stripping
public enum HeaderStrippingMode: Equatable, RawRepresentable, ExpressibleByStringLiteral {
case ignore
case replace(String)
public init(stringLiteral value: String) {
self.init(rawValue: value)!
}
public init?(rawValue: String) {
switch rawValue.lowercased() {
case "ignore", "keep", "preserve":
self = .ignore
case "strip", "":
self = .replace("")
default:
// Normalize the header
let header = rawValue.trimmingCharacters(in: .whitespacesAndNewlines)
let isMultiline = header.hasPrefix("/*")
var lines = header.components(separatedBy: "\\n")
lines = lines.map {
var line = $0
if !isMultiline, !line.hasPrefix("//") {
line = "//\(line.isEmpty ? "" : " ")\(line)"
}
return line
}
while lines.last?.isEmpty == true {
lines.removeLast()
}
self = .replace(lines.joined(separator: "\n"))
}
}
public var rawValue: String {
switch self {
case .ignore:
return "ignore"
case let .replace(string):
return string.isEmpty ? "strip" : string.replacingOccurrences(of: "\n", with: "\\n")
}
}
}
/// File info, used for constructing header comments
public struct FileInfo: Equatable, CustomStringConvertible {
var filePath: String?
var creationDate: Date?
var fileName: String? {
filePath.map { URL(fileURLWithPath: $0).lastPathComponent }
}
public init(filePath: String? = nil, creationDate: Date? = nil) {
self.filePath = filePath
self.creationDate = creationDate
}
public var description: String {
"\(fileName ?? "");\(creationDate.map { "\($0)" } ?? "")"
}
}
/// Grouping for numeric literals
public enum Grouping: Equatable, RawRepresentable, CustomStringConvertible {
case ignore
case none
case group(Int, Int)
public init?(rawValue: String) {
switch rawValue {
case "ignore":
self = .ignore
case "none":
self = .none
default:
let parts = rawValue.components(separatedBy: ",").map {
$0.trimmingCharacters(in: .whitespacesAndNewlines)
}
guard (1 ... 2).contains(parts.count),
let group = parts.first.flatMap(Int.init),
let threshold = parts.last.flatMap(Int.init)
else {
return nil
}
self = (group == 0) ? .none : .group(group, threshold)
}
}
public var rawValue: String {
switch self {
case .ignore:
return "ignore"
case .none:
return "none"
case let .group(group, threshold):
return "\(group),\(threshold)"
}
}
public var description: String {
rawValue
}
}
/// Grouping for sorting imports
public enum ImportGrouping: String, CaseIterable {
case alpha
case length
case testableFirst = "testable-first"
case testableLast = "testable-last"
}
/// Self insertion mode
public enum SelfMode: String, CaseIterable {
case insert
case remove
case initOnly = "init-only"
}
/// Optionals mode
public enum OptionalsMode: String, CaseIterable {
case exceptProperties = "except-properties"
case always
}
/// Argument type for yoda conditions
public enum YodaMode: String, CaseIterable {
case literalsOnly = "literals-only"
case always
}
/// Argument type for asset literals
public enum AssetLiteralWidth: String, CaseIterable {
case actualWidth = "actual-width"
case visualWidth = "visual-width"
}
/// Whether or not to mark types / extensions
public enum MarkMode: String, CaseIterable {
case always
case never
case ifNotEmpty = "if-not-empty"
}
/// Whether to convert types to enum
public enum EnumNamespacesMode: String, CaseIterable {
case always
case structsOnly = "structs-only"
}
/// Configuration options for formatting. These aren't actually used by the
/// Formatter class itself, but it makes them available to the format rules.
public struct FormatOptions: CustomStringConvertible {
public var lineAfterMarks: Bool
public var indent: String
public var linebreak: String
public var allowInlineSemicolons: Bool
public var spaceAroundRangeOperators: Bool
public var spaceAroundOperatorDeclarations: Bool
public var useVoid: Bool
public var indentCase: Bool
public var trailingCommas: Bool
public var truncateBlankLines: Bool
public var insertBlankLines: Bool
public var removeBlankLines: Bool
public var allmanBraces: Bool
public var fileHeader: HeaderStrippingMode
public var ifdefIndent: IndentMode
public var wrapArguments: WrapMode
public var wrapParameters: WrapMode
public var wrapCollections: WrapMode
public var wrapTypealiases: WrapMode
public var wrapEnumCases: WrapEnumCases
public var closingParenOnSameLine: Bool
public var wrapReturnType: WrapReturnType
public var wrapConditions: WrapMode
public var wrapTernaryOperators: TernaryOperatorWrapMode
public var uppercaseHex: Bool
public var uppercaseExponent: Bool
public var decimalGrouping: Grouping
public var binaryGrouping: Grouping
public var octalGrouping: Grouping
public var hexGrouping: Grouping
public var fractionGrouping: Bool
public var exponentGrouping: Bool
public var hoistPatternLet: Bool
public var stripUnusedArguments: ArgumentStrippingMode
public var elseOnNextLine: Bool
public var guardElsePosition: ElsePosition
public var explicitSelf: SelfMode
public var selfRequired: Set<String>
public var throwCapturing: Set<String>
public var asyncCapturing: Set<String>
public var experimentalRules: Bool
public var importGrouping: ImportGrouping
public var trailingClosures: Set<String>
public var neverTrailing: Set<String>
public var xcodeIndentation: Bool
public var tabWidth: Int
public var maxWidth: Int
public var smartTabs: Bool
public var assetLiteralWidth: AssetLiteralWidth
public var noSpaceOperators: Set<String>
public var noWrapOperators: Set<String>
public var modifierOrder: [String]
public var shortOptionals: OptionalsMode
public var funcAttributes: AttributeMode
public var typeAttributes: AttributeMode
public var varAttributes: AttributeMode
public var markTypes: MarkMode
public var typeMarkComment: String
public var markExtensions: MarkMode
public var extensionMarkComment: String
public var groupedExtensionMarkComment: String
public var markCategories: Bool
public var categoryMarkComment: String
public var beforeMarks: Set<String>
public var lifecycleMethods: Set<String>
public var organizeTypes: Set<String>
public var organizeClassThreshold: Int
public var organizeStructThreshold: Int
public var organizeEnumThreshold: Int
public var organizeExtensionThreshold: Int
public var yodaSwap: YodaMode
public var extensionACLPlacement: ExtensionACLPlacement
public var redundantType: RedundantType
public var emptyBracesSpacing: EmptyBracesSpacing
public var acronyms: Set<String>
public var indentStrings: Bool
public var closureVoidReturn: ClosureVoidReturn
public var enumNamespaces: EnumNamespacesMode
public var removeStartOrEndBlankLinesFromTypes: Bool
public var genericTypes: String
public var useSomeAny: Bool
public var wrapEffects: WrapEffects
// Deprecated
public var indentComments: Bool
// Doesn't really belong here, but hard to put elsewhere
public var fragment: Bool
public var ignoreConflictMarkers: Bool
public var swiftVersion: Version
public var fileInfo: FileInfo
public var timeout: TimeInterval
// Enabled rules
var enabledRules: Set<String> = []
public static let `default` = FormatOptions()
public init(lineAfterMarks: Bool = true,
indent: String = " ",
linebreak: String = "\n",
allowInlineSemicolons: Bool = true,
spaceAroundRangeOperators: Bool = true,
spaceAroundOperatorDeclarations: Bool = true,
useVoid: Bool = true,
indentCase: Bool = false,
trailingCommas: Bool = true,
indentComments: Bool = true,
truncateBlankLines: Bool = true,
insertBlankLines: Bool = true,
removeBlankLines: Bool = true,
allmanBraces: Bool = false,
fileHeader: HeaderStrippingMode = .ignore,
ifdefIndent: IndentMode = .indent,
wrapArguments: WrapMode = .preserve,
wrapParameters: WrapMode = .default,
wrapCollections: WrapMode = .preserve,
wrapTypealiases: WrapMode = .preserve,
wrapEnumCases: WrapEnumCases = .always,
closingParenOnSameLine: Bool = false,
wrapReturnType: WrapReturnType = .preserve,
wrapConditions: WrapMode = .preserve,
wrapTernaryOperators: TernaryOperatorWrapMode = .default,
uppercaseHex: Bool = true,
uppercaseExponent: Bool = false,
decimalGrouping: Grouping = .group(3, 6),
binaryGrouping: Grouping = .group(4, 8),
octalGrouping: Grouping = .group(4, 8),
hexGrouping: Grouping = .group(4, 8),
fractionGrouping: Bool = false,
exponentGrouping: Bool = false,
hoistPatternLet: Bool = true,
stripUnusedArguments: ArgumentStrippingMode = .all,
elseOnNextLine: Bool = false,
guardElsePosition: ElsePosition = .auto,
explicitSelf: SelfMode = .remove,
selfRequired: Set<String> = [],
throwCapturing: Set<String> = [],
asyncCapturing: Set<String> = [],
experimentalRules: Bool = false,
importGrouping: ImportGrouping = .alpha,
trailingClosures: Set<String> = [],
neverTrailing: Set<String> = [],
xcodeIndentation: Bool = false,
tabWidth: Int = 0,
maxWidth: Int = 0,
smartTabs: Bool = true,
assetLiteralWidth: AssetLiteralWidth = .visualWidth,
noSpaceOperators: Set<String> = [],
noWrapOperators: Set<String> = [],
modifierOrder: [String] = [],
shortOptionals: OptionalsMode = .always,
funcAttributes: AttributeMode = .preserve,
typeAttributes: AttributeMode = .preserve,
varAttributes: AttributeMode = .preserve,
markTypes: MarkMode = .always,
typeMarkComment: String = "MARK: - %t",
markExtensions: MarkMode = .always,
extensionMarkComment: String = "MARK: - %t + %c",
groupedExtensionMarkComment: String = "MARK: %c",
markCategories: Bool = true,
categoryMarkComment: String = "MARK: %c",
beforeMarks: Set<String> = [],
lifecycleMethods: Set<String> = [],
organizeTypes: Set<String> = ["class", "actor", "struct", "enum"],
organizeClassThreshold: Int = 0,
organizeStructThreshold: Int = 0,
organizeEnumThreshold: Int = 0,
organizeExtensionThreshold: Int = 0,
yodaSwap: YodaMode = .always,
extensionACLPlacement: ExtensionACLPlacement = .onExtension,
redundantType: RedundantType = .inferLocalsOnly,
emptyBracesSpacing: EmptyBracesSpacing = .noSpace,
acronyms: Set<String> = ["ID", "URL", "UUID"],
indentStrings: Bool = false,
closureVoidReturn: ClosureVoidReturn = .remove,
enumNamespaces: EnumNamespacesMode = .always,
removeStartOrEndBlankLinesFromTypes: Bool = true,
genericTypes: String = "",
useSomeAny: Bool = true,
wrapEffects: WrapEffects = .preserve,
// Doesn't really belong here, but hard to put elsewhere
fragment: Bool = false,
ignoreConflictMarkers: Bool = false,
swiftVersion: Version = .undefined,
fileInfo: FileInfo = FileInfo(),
timeout: TimeInterval = 1)
{
self.lineAfterMarks = lineAfterMarks
self.indent = indent
self.linebreak = linebreak
self.allowInlineSemicolons = allowInlineSemicolons
self.spaceAroundRangeOperators = spaceAroundRangeOperators
self.spaceAroundOperatorDeclarations = spaceAroundOperatorDeclarations
self.useVoid = useVoid
self.indentCase = indentCase
self.trailingCommas = trailingCommas
self.indentComments = indentComments
self.truncateBlankLines = truncateBlankLines
self.insertBlankLines = insertBlankLines
self.removeBlankLines = removeBlankLines
self.allmanBraces = allmanBraces
self.fileHeader = fileHeader
self.ifdefIndent = ifdefIndent
self.wrapArguments = wrapArguments
self.wrapParameters = wrapParameters
self.wrapCollections = wrapCollections
self.wrapTypealiases = wrapTypealiases
self.wrapEnumCases = wrapEnumCases
self.closingParenOnSameLine = closingParenOnSameLine
self.wrapReturnType = wrapReturnType
self.wrapConditions = wrapConditions
self.wrapTernaryOperators = wrapTernaryOperators
self.uppercaseHex = uppercaseHex
self.uppercaseExponent = uppercaseExponent
self.decimalGrouping = decimalGrouping
self.fractionGrouping = fractionGrouping
self.exponentGrouping = exponentGrouping
self.binaryGrouping = binaryGrouping
self.octalGrouping = octalGrouping
self.hexGrouping = hexGrouping
self.hoistPatternLet = hoistPatternLet
self.stripUnusedArguments = stripUnusedArguments
self.elseOnNextLine = elseOnNextLine
self.guardElsePosition = guardElsePosition
self.explicitSelf = explicitSelf
self.selfRequired = selfRequired
self.throwCapturing = throwCapturing
self.asyncCapturing = asyncCapturing
self.experimentalRules = experimentalRules
self.importGrouping = importGrouping
self.trailingClosures = trailingClosures
self.neverTrailing = neverTrailing
self.xcodeIndentation = xcodeIndentation
self.tabWidth = tabWidth
self.maxWidth = maxWidth
self.smartTabs = smartTabs
self.assetLiteralWidth = assetLiteralWidth
self.noSpaceOperators = noSpaceOperators
self.noWrapOperators = noWrapOperators
self.modifierOrder = modifierOrder
self.shortOptionals = shortOptionals
self.funcAttributes = funcAttributes
self.typeAttributes = typeAttributes
self.varAttributes = varAttributes
self.markTypes = markTypes
self.typeMarkComment = typeMarkComment
self.markExtensions = markExtensions
self.extensionMarkComment = extensionMarkComment
self.groupedExtensionMarkComment = groupedExtensionMarkComment
self.markCategories = markCategories
self.categoryMarkComment = categoryMarkComment
self.beforeMarks = beforeMarks
self.lifecycleMethods = lifecycleMethods
self.organizeTypes = organizeTypes
self.organizeClassThreshold = organizeClassThreshold
self.organizeStructThreshold = organizeStructThreshold
self.organizeEnumThreshold = organizeEnumThreshold
self.organizeExtensionThreshold = organizeExtensionThreshold
self.yodaSwap = yodaSwap
self.extensionACLPlacement = extensionACLPlacement
self.redundantType = redundantType
self.emptyBracesSpacing = emptyBracesSpacing
self.acronyms = acronyms
self.indentStrings = indentStrings
self.closureVoidReturn = closureVoidReturn
self.enumNamespaces = enumNamespaces
self.removeStartOrEndBlankLinesFromTypes = removeStartOrEndBlankLinesFromTypes
self.genericTypes = genericTypes
self.useSomeAny = useSomeAny
self.wrapEffects = wrapEffects
// Doesn't really belong here, but hard to put elsewhere
self.fragment = fragment
self.ignoreConflictMarkers = ignoreConflictMarkers
self.swiftVersion = swiftVersion
self.fileInfo = fileInfo
self.timeout = timeout
}
public var useTabs: Bool {
indent.first == "\t"
}
public var requiresFileInfo: Bool {
let string = fileHeader.rawValue
return string.contains("{created") || string.contains("{file")
}
public var allOptions: [String: Any] {
let pairs = Mirror(reflecting: self).children.map { ($0!, $1) }
var options = Dictionary(pairs, uniquingKeysWith: { $1 })
for key in ["fileInfo", "enabledRules", "timeout"] { // Special cases
options[key] = nil
}
return options
}
public var description: String {
let allowedCharacters = CharacterSet.newlines.inverted
return Mirror(reflecting: self).children.compactMap { child in
let value = (child.value as? Set<AnyHashable>).map { $0.sorted as Any } ?? child.value
return "\(value);".addingPercentEncoding(withAllowedCharacters: allowedCharacters)
}.joined()
}
}
/// File enumeration options
public struct FileOptions {
public var followSymlinks: Bool
public var supportedFileExtensions: [String]
public var excludedGlobs: [Glob]
public var unexcludedGlobs: [Glob]
public var minVersion: Version
public static let `default` = FileOptions()
public init(followSymlinks: Bool = false,
supportedFileExtensions: [String] = ["swift"],
excludedGlobs: [Glob] = [],
unexcludedGlobs: [Glob] = [],
minVersion: Version = .undefined)
{
self.followSymlinks = followSymlinks
self.supportedFileExtensions = supportedFileExtensions
self.excludedGlobs = excludedGlobs
self.unexcludedGlobs = unexcludedGlobs
self.minVersion = minVersion
}
public func shouldSkipFile(_ inputURL: URL) -> Bool {
let parts = inputURL.standardizedFileURL.path.components(separatedBy: "/")
var path: String!
var shouldSkip = false
for part in parts {
path = path.map { "\($0)/\(part)" } ?? part
if !shouldSkip, excludedGlobs.contains(where: { $0.matches(path) }) {
shouldSkip = true
}
if shouldSkip, unexcludedGlobs.contains(where: { $0.matches(path) }) {
shouldSkip = false
}
}
return shouldSkip
}
}
/// All options
public struct Options {
public var fileOptions: FileOptions?
public var formatOptions: FormatOptions?
public var rules: Set<String>?
public var configURL: URL?
public var lint: Bool
public static let `default` = Options(
fileOptions: .default,
formatOptions: .default,
rules: Set(FormatRules.byName.keys).subtracting(FormatRules.disabledByDefault),
configURL: nil,
lint: false
)
public init(fileOptions: FileOptions? = nil,
formatOptions: FormatOptions? = nil,
rules: Set<String>? = nil,
configURL: URL? = nil,
lint: Bool = false)
{
self.fileOptions = fileOptions
self.formatOptions = formatOptions
self.rules = rules
self.configURL = configURL
self.lint = lint
}
public func shouldSkipFile(_ inputURL: URL) -> Bool {
fileOptions?.shouldSkipFile(inputURL) ?? false
}
}