docs: update TODOs.
This commit is contained in:
5
Bootstrap/.gitignore
vendored
Normal file
5
Bootstrap/.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
# Python
|
||||
.venv
|
||||
|
||||
# VSCode
|
||||
.vscode
|
||||
2
Bootstrap/README.md
Normal file
2
Bootstrap/README.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# Bootstrap
|
||||
WIP.
|
||||
0
Bootstrap/requirements.txt
Normal file
0
Bootstrap/requirements.txt
Normal file
17
Bootstrap/ruff.toml
Normal file
17
Bootstrap/ruff.toml
Normal 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
7
Bootstrap/src/main.py
Normal file
@@ -0,0 +1,7 @@
|
||||
# import WHAT
|
||||
|
||||
def main():
|
||||
pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Reference in New Issue
Block a user