-
Notifications
You must be signed in to change notification settings - Fork 0
/
.swift-format
39 lines (39 loc) · 1.1 KB
/
.swift-format
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
{
"version": 1,
"lineLength": 100,
"indentation": {
"spaces": 2
},
"tabWidth": 2,
"maximumBlankLines": 1,
"respectsExistingLineBreaks": true,
"rules": {
"AllPublicDeclarationsHaveDocumentation": true,
"AlwaysUseLowerCamelCase": true,
"BeginDocumentationCommentWithOneLineSummary": true,
"DoNotUseSemicolons": true,
"FullyIndirectEnum": true,
"GroupNumericLiterals": true,
"NoBlockComments": true,
"OneCasePerLine": true,
"OrderedImports": true,
"UseLetInEveryBoundCaseVariable": true,
"UseShorthandTypeNames": true,
"UseSingleLinePropertyGetter": true,
"UseTripleSlashForDocumentationComments": true,
"ValidateDocumentationComments": true,
"FileScopedDeclarationPrivacy": true,
"NeverForceUnwrap": true,
"NeverUseForceTry": true,
"NoAccessLevelOnExtensionDeclaration": true,
"UseExplicitNilCheckInConditions": true,
"UseSynthesizedInitializer": true,
"UseWhereClausesInForLoops": true,
"NoEmptyTrailingClosureParentheses": true
},
"excluded": [
".build",
"Packages",
"Sources/SwiftTZ/Generated"
]
}