|
1 | 1 | { |
2 | | - "fileScopedDeclarationPrivacy" : { |
3 | | - "accessLevel" : "private" |
| 2 | + "version": 1, |
| 3 | + "lineLength": 80, |
| 4 | + "maximumBlankLines": 1, |
| 5 | + "fileScopedDeclarationPrivacy": { |
| 6 | + "accessLevel": "private" |
4 | 7 | }, |
5 | | - "indentation" : { |
6 | | - "spaces" : 4 |
| 8 | + "tabWidth": 4, |
| 9 | + "indentation": { |
| 10 | + "spaces": 4 |
7 | 11 | }, |
8 | | - "indentConditionalCompilationBlocks" : false, |
9 | | - "indentSwitchCaseLabels" : false, |
10 | | - "lineBreakAroundMultilineExpressionChainComponents" : true, |
11 | | - "lineBreakBeforeControlFlowKeywords" : true, |
12 | | - "lineBreakBeforeEachArgument" : true, |
13 | | - "lineBreakBeforeEachGenericRequirement" : true, |
14 | | - "lineLength" : 80, |
15 | | - "maximumBlankLines" : 1, |
16 | | - "prioritizeKeepingFunctionOutputTogether" : false, |
17 | | - "respectsExistingLineBreaks" : true, |
18 | | - "rules" : { |
19 | | - "AllPublicDeclarationsHaveDocumentation" : true, |
20 | | - "AlwaysUseLowerCamelCase" : false, |
21 | | - "AmbiguousTrailingClosureOverload" : true, |
22 | | - "BeginDocumentationCommentWithOneLineSummary" : false, |
23 | | - "DoNotUseSemicolons" : true, |
24 | | - "DontRepeatTypeInStaticProperties" : false, |
25 | | - "FileScopedDeclarationPrivacy" : true, |
26 | | - "FullyIndirectEnum" : true, |
27 | | - "GroupNumericLiterals" : true, |
28 | | - "IdentifiersMustBeASCII" : true, |
29 | | - "NeverForceUnwrap" : false, |
30 | | - "NeverUseForceTry" : false, |
31 | | - "NeverUseImplicitlyUnwrappedOptionals" : false, |
32 | | - "NoAccessLevelOnExtensionDeclaration" : false, |
33 | | - "NoAssignmentInExpressions" : true, |
34 | | - "NoBlockComments" : true, |
35 | | - "NoCasesWithOnlyFallthrough" : true, |
36 | | - "NoEmptyTrailingClosureParentheses" : true, |
37 | | - "NoLabelsInCasePatterns" : false, |
38 | | - "NoLeadingUnderscores" : false, |
39 | | - "NoParensAroundConditions" : true, |
40 | | - "NoVoidReturnOnFunctionSignature" : true, |
41 | | - "OneCasePerLine" : true, |
42 | | - "OneVariableDeclarationPerLine" : true, |
43 | | - "OnlyOneTrailingClosureArgument" : true, |
44 | | - "OrderedImports" : false, |
45 | | - "ReturnVoidInsteadOfEmptyTuple" : true, |
46 | | - "UseEarlyExits" : false, |
47 | | - "UseLetInEveryBoundCaseVariable" : false, |
48 | | - "UseShorthandTypeNames" : true, |
49 | | - "UseSingleLinePropertyGetter" : false, |
50 | | - "UseSynthesizedInitializer" : true, |
51 | | - "UseTripleSlashForDocumentationComments" : true, |
52 | | - "UseWhereClausesInForLoops" : false, |
53 | | - "ValidateDocumentationComments" : true |
54 | | - }, |
55 | | - "spacesAroundRangeFormationOperators" : false, |
56 | | - "tabWidth" : 4, |
57 | | - "version" : 1 |
| 12 | + "indentConditionalCompilationBlocks": false, |
| 13 | + "indentSwitchCaseLabels": false, |
| 14 | + "lineBreakAroundMultilineExpressionChainComponents": true, |
| 15 | + "lineBreakBeforeControlFlowKeywords": true, |
| 16 | + "lineBreakBeforeEachArgument": true, |
| 17 | + "lineBreakBeforeEachGenericRequirement": true, |
| 18 | + "prioritizeKeepingFunctionOutputTogether": false, |
| 19 | + "respectsExistingLineBreaks": true, |
| 20 | + "spacesAroundRangeFormationOperators": false, |
| 21 | + "multiElementCollectionTrailingCommas": true, |
| 22 | + "rules": { |
| 23 | + "AllPublicDeclarationsHaveDocumentation": false, |
| 24 | + "AlwaysUseLiteralForEmptyCollectionInit": true, |
| 25 | + "AlwaysUseLowerCamelCase": true, |
| 26 | + "AmbiguousTrailingClosureOverload": true, |
| 27 | + "BeginDocumentationCommentWithOneLineSummary": true, |
| 28 | + "DoNotUseSemicolons": true, |
| 29 | + "DontRepeatTypeInStaticProperties": true, |
| 30 | + "FileScopedDeclarationPrivacy": true, |
| 31 | + "FullyIndirectEnum": true, |
| 32 | + "GroupNumericLiterals": true, |
| 33 | + "IdentifiersMustBeASCII": true, |
| 34 | + "NeverForceUnwrap": false, |
| 35 | + "NeverUseForceTry": true, |
| 36 | + "NeverUseImplicitlyUnwrappedOptionals": true, |
| 37 | + "NoAccessLevelOnExtensionDeclaration": true, |
| 38 | + "NoAssignmentInExpressions": true, |
| 39 | + "NoBlockComments": true, |
| 40 | + "NoCasesWithOnlyFallthrough": true, |
| 41 | + "NoEmptyTrailingClosureParentheses": true, |
| 42 | + "NoLabelsInCasePatterns": true, |
| 43 | + "NoLeadingUnderscores": true, |
| 44 | + "NoParensAroundConditions": true, |
| 45 | + "NoPlaygroundLiterals": true, |
| 46 | + "NoVoidReturnOnFunctionSignature": true, |
| 47 | + "OmitExplicitReturns": true, |
| 48 | + "OneCasePerLine": true, |
| 49 | + "OneVariableDeclarationPerLine": true, |
| 50 | + "OnlyOneTrailingClosureArgument": true, |
| 51 | + "OrderedImports": true, |
| 52 | + "ReplaceForEachWithForLoop": true, |
| 53 | + "ReturnVoidInsteadOfEmptyTuple": true, |
| 54 | + "TypeNamesShouldBeCapitalized": true, |
| 55 | + "UseEarlyExits": true, |
| 56 | + "UseLetInEveryBoundCaseVariable": true, |
| 57 | + "UseShorthandTypeNames": true, |
| 58 | + "UseSingleLinePropertyGetter": true, |
| 59 | + "UseSynthesizedInitializer": true, |
| 60 | + "UseTripleSlashForDocumentationComments": true, |
| 61 | + "UseWhereClausesInForLoops": true, |
| 62 | + "ValidateDocumentationComments": true |
| 63 | + } |
58 | 64 | } |
0 commit comments