-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into barclah/ball-socket
- Loading branch information
Showing
254 changed files
with
10,402 additions
and
5,133 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 |
---|---|---|
@@ -1 +1,6 @@ | ||
* text=auto | ||
|
||
# Workaround for a bug in GitHub's language detection, | ||
# previously half of our code was being counted as JavaScript.. for some reason... | ||
# and we certainly can't have that. - Brandon | ||
*.js linguist-detectable=false |
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,23 @@ | ||
name: Fusion - mypy Typing Validation | ||
|
||
on: | ||
workflow_dispatch: {} | ||
push: | ||
branches: [ prod, dev ] | ||
pull_request: | ||
branches: [ prod, dev ] | ||
|
||
jobs: | ||
mypy: | ||
name: Run mypy | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./exporter/SynthesisFusionAddin | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' | ||
- run: pip install -r requirements-mypy.txt | ||
- run: mypy |
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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
.vs/ | ||
.vscode/ | ||
/build/ | ||
build/ | ||
dist/ | ||
*.log | ||
.DS_Store | ||
*.pkg | ||
*.exe |
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "mirabuf"] | ||
path = mirabuf | ||
url = https://github.com/HiceS/mirabuf.git | ||
[submodule "jolt"] | ||
path = jolt | ||
url = https://github.com/HunterBarclay/JoltPhysics.js.git |
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
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,14 @@ | ||
[mypy] | ||
files = Synthesis.py, src | ||
warn_unused_configs = True | ||
check_untyped_defs = True | ||
warn_unreachable = True | ||
warn_redundant_casts = True | ||
warn_unused_ignores = True | ||
warn_no_return = True | ||
warn_return_any = True | ||
strict = True | ||
ignore_missing_imports = True | ||
follow_imports = skip | ||
disallow_subclassing_any = False | ||
disable_error_code = no-untyped-call |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
rm -rf -v ./proto_out | ||
mkdir ./proto_out | ||
git submodule update --init --recursive | ||
protoc -I=../../../mirabuf --python_out=./proto_out ../../../mirabuf/*.proto | ||
protoc -I=../../../mirabuf --python_out=./proto_out --mypy_out=./proto_out ../../../mirabuf/*.proto |
Oops, something went wrong.