forked from ArchipelagoMW/Archipelago
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ArchipelagoMW:main' into ttyd
- Loading branch information
Showing
148 changed files
with
4,745 additions
and
4,139 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,27 @@ | ||
{ | ||
"include": [ | ||
"type_check.py", | ||
"../worlds/AutoSNIClient.py", | ||
"../Patch.py" | ||
], | ||
|
||
"exclude": [ | ||
"**/__pycache__" | ||
], | ||
|
||
"stubPath": "../typings", | ||
|
||
"typeCheckingMode": "strict", | ||
"reportImplicitOverride": "error", | ||
"reportMissingImports": true, | ||
"reportMissingTypeStubs": true, | ||
|
||
"pythonVersion": "3.8", | ||
"pythonPlatform": "Windows", | ||
|
||
"executionEnvironments": [ | ||
{ | ||
"root": ".." | ||
} | ||
] | ||
} |
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,15 @@ | ||
from pathlib import Path | ||
import subprocess | ||
|
||
config = Path(__file__).parent / "pyright-config.json" | ||
|
||
command = ("pyright", "-p", str(config)) | ||
print(" ".join(command)) | ||
|
||
try: | ||
result = subprocess.run(command) | ||
except FileNotFoundError as e: | ||
print(f"{e} - Is pyright installed?") | ||
exit(1) | ||
|
||
exit(result.returncode) |
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,33 @@ | ||
name: type check | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "**.py" | ||
- ".github/pyright-config.json" | ||
- ".github/workflows/strict-type-check.yml" | ||
- "**.pyi" | ||
push: | ||
paths: | ||
- "**.py" | ||
- ".github/pyright-config.json" | ||
- ".github/workflows/strict-type-check.yml" | ||
- "**.pyi" | ||
|
||
jobs: | ||
pyright: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: "Install dependencies" | ||
run: | | ||
python -m pip install --upgrade pip pyright==1.1.358 | ||
python ModuleUpdate.py --append "WebHostLib/requirements.txt" --force --yes | ||
- name: "pyright: strict check on specific files" | ||
run: python .github/type_check.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
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
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 @@ | ||
from WebHostLib import app | ||
from flask import abort | ||
from . import cache | ||
|
||
|
||
@cache.cached() | ||
@app.route('/robots.txt') | ||
def robots(): | ||
# If this host is not official, do not allow search engine crawling | ||
if not app.config["ASSET_RIGHTS"]: | ||
return app.send_static_file('robots.txt') | ||
|
||
# Send 404 if the host has affirmed this to be the official WebHost | ||
abort(404) |
Oops, something went wrong.