forked from domzilla/Caffeine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.swiftformat
More file actions
65 lines (50 loc) · 1.12 KB
/
.swiftformat
File metadata and controls
65 lines (50 loc) · 1.12 KB
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
# SwiftFormat Configuration for Swift 6
# https://github.com/nicklockwood/SwiftFormat
# Self/indentation rules to match root repo
--self insert
--ifdef no-indent
# Swift version
--swiftversion 6
# Indentation
--indent 4
--tabwidth 4
--smarttabs enabled
--indentcase false
# Line length
--maxwidth 120
# Spacing
--commas always
--semicolons never
--ranges no-space
--voidtype void
--trimwhitespace always
# Wrapping
--wraparguments before-first
--wrapparameters before-first
--wrapcollections before-first
--wrapconditions before-first
--wrapreturntype if-multiline
# Closure formatting
--closingparen balanced
--closurevoid remove
--trailingclosures
# Import organization
--importgrouping testable-bottom
# Enum formatting
--enum-namespaces always
# Function formatting
--funcattributes prev-line
--typeattributes prev-line
# Access control
--extensionacl on-declarations
# Brace formatting
--allman false
--elseposition same-line
--guardelse same-line
# Operator formatting
--operatorfunc spaced
--nospaceoperators ..<,...,..
# File header (preserve existing headers)
--header ignore
# Exclude files
--exclude .build,DerivedData