-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update from dtk-template and start work towards using clangd
- Loading branch information
1 parent
4543ec1
commit 1ed8a4c
Showing
422 changed files
with
12,924 additions
and
3,113 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
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,4 @@ | ||
[flake8] | ||
# E203: whitespace before ':' | ||
# E501: line too long | ||
extend-ignore = E203,E501 |
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,22 +1,35 @@ | ||
# IDE folders | ||
.idea/ | ||
.vs/ | ||
|
||
# Caches | ||
__pycache__ | ||
.vscode/c_cpp_properties.json | ||
.mypy_cache | ||
.cache/ | ||
|
||
# game files | ||
# Original files | ||
orig/*/* | ||
!orig/SOUE01/README.md | ||
!orig/*/.gitkeep | ||
*.dol | ||
*.rel | ||
*.elf | ||
*.o | ||
*.map | ||
*.MAP | ||
|
||
# ninja stuff | ||
build | ||
# Build files | ||
build/ | ||
.ninja_* | ||
build.ninja | ||
.ninja_deps | ||
.ninja_log | ||
|
||
# tools | ||
tools/dtk | ||
tools/mwcc_compiler/* | ||
!tools/mwcc_compiler/.gitkeep | ||
/tools/objdiff.exe | ||
# decompctx output | ||
ctx.* | ||
*.ctx | ||
|
||
# Generated configs | ||
objdiff.json | ||
ctx.c | ||
compile_commands.json | ||
|
||
# Miscellaneous | ||
/*.txt | ||
*.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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"recommendations": [ | ||
"llvm-vs-code-extensions.vscode-clangd", | ||
"ms-python.black-formatter", | ||
"ms-python.flake8", | ||
], | ||
"unwantedRecommendations": [ | ||
"ms-vscode.cmake-tools", | ||
"ms-vscode.cpptools-extension-pack", | ||
"ms-vscode.cpptools", | ||
] | ||
} |
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,16 @@ | ||
{ | ||
// Use Ctrl+Shift+B to run build tasks. | ||
// Or "Run Build Task" in the Command Palette. | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "ninja", | ||
"type": "shell", | ||
"command": "ninja", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
] | ||
} |
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
Oops, something went wrong.