Skip to content

Commit

Permalink
feat: initial code import, using xcon for library name.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshorr committed Feb 10, 2023
0 parents commit 79ec325
Show file tree
Hide file tree
Showing 26 changed files with 9,221 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .editorconfig
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
6 changes: 6 additions & 0 deletions .github/workflows/publish-docs.yml
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
11 changes: 11 additions & 0 deletions .github/workflows/push-main.yml
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
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
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
Loading

0 comments on commit 79ec325

Please sign in to comment.