-
Notifications
You must be signed in to change notification settings - Fork 636
/
Copy pathRuleRegistry.generated.swift
122 lines (121 loc) · 4.98 KB
/
RuleRegistry.generated.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
//
// RuleRegistry.generated.swift
// SwiftFormat
//
// Created by Cal Stephens on 7/27/24.
// Copyright © 2024 Nick Lockwood. All rights reserved.
//
/// All of the rules defined in the Rules directory.
/// **Generated automatically when running tests. Do not modify.**
let ruleRegistry: [String: FormatRule] = [
"acronyms": .acronyms,
"andOperator": .andOperator,
"anyObjectProtocol": .anyObjectProtocol,
"applicationMain": .applicationMain,
"assertionFailures": .assertionFailures,
"blankLineAfterImports": .blankLineAfterImports,
"blankLineAfterSwitchCase": .blankLineAfterSwitchCase,
"blankLinesAroundMark": .blankLinesAroundMark,
"blankLinesAtEndOfScope": .blankLinesAtEndOfScope,
"blankLinesAtStartOfScope": .blankLinesAtStartOfScope,
"blankLinesBetweenChainedFunctions": .blankLinesBetweenChainedFunctions,
"blankLinesBetweenImports": .blankLinesBetweenImports,
"blankLinesBetweenScopes": .blankLinesBetweenScopes,
"blockComments": .blockComments,
"braces": .braces,
"conditionalAssignment": .conditionalAssignment,
"consecutiveBlankLines": .consecutiveBlankLines,
"consecutiveSpaces": .consecutiveSpaces,
"consistentSwitchCaseSpacing": .consistentSwitchCaseSpacing,
"docComments": .docComments,
"docCommentsBeforeModifiers": .docCommentsBeforeModifiers,
"duplicateImports": .duplicateImports,
"elseOnSameLine": .elseOnSameLine,
"emptyBraces": .emptyBraces,
"enumNamespaces": .enumNamespaces,
"extensionAccessControl": .extensionAccessControl,
"fileHeader": .fileHeader,
"genericExtensions": .genericExtensions,
"headerFileName": .headerFileName,
"hoistAwait": .hoistAwait,
"hoistPatternLet": .hoistPatternLet,
"hoistTry": .hoistTry,
"indent": .indent,
"initCoderUnavailable": .initCoderUnavailable,
"isEmpty": .isEmpty,
"leadingDelimiters": .leadingDelimiters,
"linebreakAtEndOfFile": .linebreakAtEndOfFile,
"linebreaks": .linebreaks,
"markTypes": .markTypes,
"modifierOrder": .modifierOrder,
"noExplicitOwnership": .noExplicitOwnership,
"numberFormatting": .numberFormatting,
"opaqueGenericParameters": .opaqueGenericParameters,
"organizeDeclarations": .organizeDeclarations,
"preferForLoop": .preferForLoop,
"preferKeyPath": .preferKeyPath,
"propertyTypes": .propertyTypes,
"redundantBackticks": .redundantBackticks,
"redundantBreak": .redundantBreak,
"redundantClosure": .redundantClosure,
"redundantExtensionACL": .redundantExtensionACL,
"redundantFileprivate": .redundantFileprivate,
"redundantGet": .redundantGet,
"redundantInit": .redundantInit,
"redundantInternal": .redundantInternal,
"redundantLet": .redundantLet,
"redundantLetError": .redundantLetError,
"redundantNilInit": .redundantNilInit,
"redundantObjc": .redundantObjc,
"redundantOptionalBinding": .redundantOptionalBinding,
"redundantParens": .redundantParens,
"redundantPattern": .redundantPattern,
"redundantProperty": .redundantProperty,
"redundantRawValues": .redundantRawValues,
"redundantReturn": .redundantReturn,
"redundantSelf": .redundantSelf,
"redundantStaticSelf": .redundantStaticSelf,
"redundantType": .redundantType,
"redundantTypedThrows": .redundantTypedThrows,
"redundantVoidReturnType": .redundantVoidReturnType,
"semicolons": .semicolons,
"sortDeclarations": .sortDeclarations,
"sortImports": .sortImports,
"sortSwitchCases": .sortSwitchCases,
"sortTypealiases": .sortTypealiases,
"sortedImports": .sortedImports,
"sortedSwitchCases": .sortedSwitchCases,
"spaceAroundBraces": .spaceAroundBraces,
"spaceAroundBrackets": .spaceAroundBrackets,
"spaceAroundComments": .spaceAroundComments,
"spaceAroundGenerics": .spaceAroundGenerics,
"spaceAroundOperators": .spaceAroundOperators,
"spaceAroundParens": .spaceAroundParens,
"spaceInsideBraces": .spaceInsideBraces,
"spaceInsideBrackets": .spaceInsideBrackets,
"spaceInsideComments": .spaceInsideComments,
"spaceInsideGenerics": .spaceInsideGenerics,
"spaceInsideParens": .spaceInsideParens,
"specifiers": .specifiers,
"strongOutlets": .strongOutlets,
"strongifiedSelf": .strongifiedSelf,
"todos": .todos,
"trailingClosures": .trailingClosures,
"trailingCommas": .trailingCommas,
"trailingSpace": .trailingSpace,
"typeSugar": .typeSugar,
"unusedArguments": .unusedArguments,
"unusedPrivateDeclarations": .unusedPrivateDeclarations,
"void": .void,
"wrap": .wrap,
"wrapArguments": .wrapArguments,
"wrapAttributes": .wrapAttributes,
"wrapConditionalBodies": .wrapConditionalBodies,
"wrapEnumCases": .wrapEnumCases,
"wrapLoopBodies": .wrapLoopBodies,
"wrapMultilineConditionalAssignment": .wrapMultilineConditionalAssignment,
"wrapMultilineStatementBraces": .wrapMultilineStatementBraces,
"wrapSingleLineComments": .wrapSingleLineComments,
"wrapSwitchCases": .wrapSwitchCases,
"yodaConditions": .yodaConditions,
]