-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #398 from unum-cloud/main-dev
Introduce Swift Formatting
- Loading branch information
Showing
10 changed files
with
71 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,6 +72,14 @@ body: | |
placeholder: [email protected] | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: mentions | ||
attributes: | ||
label: Are you open to being tagged as a contributor? | ||
description: Sometimes a good bug report is just as valuable as a patch 🤗 | ||
options: | ||
- label: I am open to being mentioned in the project `.git` history as a contributor | ||
required: false | ||
- type: checkboxes | ||
id: duplicate | ||
attributes: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"version": 1, | ||
"lineLength": 120, | ||
"indentation": { | ||
"spaces": 4 | ||
}, | ||
"maximumBlankLines": 1, | ||
"respectsExistingLineBreaks": true, | ||
"lineBreakBeforeControlFlowKeywords": true, | ||
"lineBreakBeforeEachArgument": true, | ||
"multiElementCollectionTrailingCommas": true, | ||
"spacesAroundRangeFormationOperators": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"recommendations": [ | ||
"vknabel.vscode-apple-swift-format", | ||
"sswg.swift-lang", | ||
"ms-python.black-formatter", | ||
"ms-vscode.cpptools-extension-pack", | ||
"xaver.clang-format", | ||
"swellaby.rust-pack" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule stringzilla
updated
10 files
+5 −0 | .github/workflows/release.yml | |
+4 −0 | .github/workflows/update_version.sh | |
+2 −2 | CMakeLists.txt | |
+3 −12 | Cargo.lock | |
+1 −1 | Cargo.toml | |
+1 −1 | VERSION | |
+3 −3 | include/stringzilla/stringzilla.h | |
+1 −1 | package.json | |
+166 −15 | python/lib.c | |
+21 −1 | scripts/test.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters