-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: initial code import, using
xcon
for library name.
- Loading branch information
0 parents
commit 79ec325
Showing
26 changed files
with
9,221 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# WARNING: This file is managed by our repository manager tool https://github.com/xyngular/repoman | ||
# and changes will be overwritten when "repo install" is executed | ||
|
||
# Standard editor/code configurations for company | ||
root = true | ||
|
||
# Global: Unix-style newlines with a newline ending every file | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = space | ||
trim_trailing_whitespace = true | ||
|
||
[*.{js,json}] | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
# 4 space indentation for python | ||
[*.{py, pyi}] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.{js,json,py}] | ||
charset = utf-8 | ||
|
||
[*.yml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Tab indentation for Makefiles (no size specified) | ||
[Makefile] | ||
indent_style = tab | ||
|
||
[*.mk] | ||
indent_style = tab |
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,6 @@ | ||
on: workflow_dispatch | ||
name: Publish Docs | ||
jobs: | ||
reusable: | ||
uses: xyngular/reusable-github-workflows/.github/workflows/py-publish-docs.yml@main | ||
secrets: inherit |
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,11 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
name: Push Main | ||
jobs: | ||
reusable: | ||
uses: xyngular/reusable-github-workflows/.github/workflows/py-push-main.yml@main | ||
with: | ||
real-publish: true | ||
secrets: inherit |
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,6 @@ | ||
name: test-local | ||
on: pull_request | ||
jobs: | ||
reusable: | ||
uses: xyngular/reusable-github-workflows/.github/workflows/py-test.yml@main | ||
secrets: inherit |
Oops, something went wrong.