-
Notifications
You must be signed in to change notification settings - Fork 5
/
.swiftformat
64 lines (62 loc) · 2.22 KB
/
.swiftformat
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
--disable fileHeader
--disable isEmpty # Has the potential to auto-fix in a way that breaks the code
--disable unusedArguments # We don't see enough value in the consistency this rule gives, and it could introduce conflicts in dependent PRs
--disable wrapMultilineStatementBraces
# These are potentially controversial.
--disable blankLinesAroundMark # Is it a net improvement in code quality to enable this?
--disable redundantLetError # Do we want to rely on implicit stuff?
--disable redundantRawValues # It can be preferable to have all the cases values be explicit
--disable redundantSelf # It can be preferable to have a consistent usage of self, e.g. in an init()
--disable trailingClosures # Maybe we want to leave this up to stylistic preference? It was changing a lot of code
--enable andOperator # Use of a comma instead of && is considered idiomatic Swift
--enable anyObjectProtocol # `AnyObject` and `class` constraints are identical in function, but `class` is due to be deprecated
--enable blankLinesAtEndOfScope
--enable blankLinesAtStartOfScope
--enable blankLinesBetweenScopes
--enable braces
--enable consecutiveBlankLines
--enable consecutiveSpaces
--enable duplicateImports
--enable elseOnSameLine
--enable emptyBraces
--enable hoistPatternLet
--enable indent
--enable leadingDelimiters
--enable linebreakAtEndOfFile
--enable linebreaks
--enable modifierOrder
--enable redundantBackticks
--enable redundantBreak
--enable redundantExtensionACL
--enable redundantFileprivate
--enable redundantGet
--enable redundantInit
--enable redundantLet
--enable redundantNilInit
--enable redundantObjc
--enable redundantParens
--enable redundantPattern
--enable redundantReturn
--enable redundantVoidReturnType
--enable semicolons
--enable sortedImports
--enable spaceAroundBraces
--enable spaceAroundBrackets
--enable spaceAroundComments
--enable spaceAroundGenerics
--enable spaceAroundOperators
--enable spaceAroundParens
--enable spaceInsideBraces
--enable spaceInsideBrackets
--enable spaceInsideComments
--enable spaceInsideGenerics
--enable spaceInsideParens
--enable strongifiedSelf
--enable todos
--enable trailingCommas
--enable trailingSpace
--enable typeSugar
--enable void
--enable wrapArguments
--wrapcollections before-first
--enable yodaConditions