docs: update TODOs.

This commit is contained in:
2025-01-23 15:28:27 +08:00
parent c10de1b55e
commit 13a11eab54
6 changed files with 33 additions and 0 deletions

5
Bootstrap/.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
# Python
.venv
# VSCode
.vscode

2
Bootstrap/README.md Normal file
View File

@@ -0,0 +1,2 @@
# Bootstrap
WIP.

View File

17
Bootstrap/ruff.toml Normal file
View File

@@ -0,0 +1,17 @@
# Same as Black.
line-length = 100
indent-width = 4
# Assume Python 3.12
target-version = "py312"
[lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = ["E", "F", "W"]
ignore = ["E501"]
[format]
# Like Black, use double quotes for strings.
quote-style = "single"

7
Bootstrap/src/main.py Normal file
View File

@@ -0,0 +1,7 @@
# import WHAT
def main():
pass
if __name__ == '__main__':
main()

View File

@@ -49,6 +49,8 @@ xmake -v
## TODO
- [ ] Tap into more available symbols.
- [ ] Fully open source HeaderGen.
- [ ] Bootstrap.
- [ ] Opti project structure.
## Be with us
Our vision is to build an open and inclusive Minecraft: Bedrock Edition ecosystem.