native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Align trailing comma tooling

khoi 6dec82f2 60b8f67b

+2 -4
+1
.swift-format.json
··· 14 14 "lineBreakBetweenDeclarationAttributes" : false, 15 15 "lineLength" : 120, 16 16 "maximumBlankLines" : 1, 17 + "multilineTrailingCommaBehavior" : "alwaysUsed", 17 18 "multiElementCollectionTrailingCommas" : true, 18 19 "noAssignmentInExpressions" : { 19 20 "allowedFunctions" : [
+1 -3
.swiftlint.yml
··· 13 13 - file_length 14 14 - closure_parameter_position 15 15 - type_body_length 16 + - trailing_comma 16 17 17 18 opt_in_rules: 18 19 - accessibility_label_for_image ··· 23 24 ignore_multiline_function_signatures: true 24 25 ignore_multiline_statement_conditions: true 25 26 ignore_multiline_type_headers: true 26 - 27 - trailing_comma: 28 - mandatory_comma: true 29 27 30 28 cyclomatic_complexity: 31 29 warning: 15
-1
Makefile
··· 121 121 swift format -p --in-place --recursive --configuration ./.swift-format.json supacode supacode-cli supacodeTests 122 122 123 123 lint: # Lint code with swiftlint 124 - mise exec -- swiftlint --fix --quiet 125 124 mise exec -- swiftlint lint --quiet --config .swiftlint.yml 126 125 127 126 check: format lint # Format and lint