-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #170 from SMGCommunity/dtk
Dtk
- Loading branch information
Showing
3,368 changed files
with
96,511 additions
and
375,645 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,11 +1,13 @@ | ||
*.c text | ||
*.cpp text | ||
*.h text | ||
*.hpp text | ||
*.csv text | ||
*.json text | ||
*.md text | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
archive/* binary | ||
*.png binary | ||
# Explicitly declare text files | ||
*.py text | ||
|
||
# Enforce platform-specific encodings | ||
*.bat text eol=crlf | ||
*.sh text eol=lf | ||
*.sha1 text eol=lf | ||
|
||
# decomp-toolkit writes files with LF | ||
config/**/*.txt text eol=lf |
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,38 +1,35 @@ | ||
.vs | ||
.vscode | ||
.editorconfig | ||
*.dat | ||
tools/*.exe | ||
tools/*.dll | ||
deps | ||
*.idb | ||
*.id0 | ||
*.id1 | ||
*.id2 | ||
*.nam | ||
*.til | ||
*.map | ||
# IDE folders | ||
.idea/ | ||
.vs/ | ||
|
||
# Caches | ||
__pycache__ | ||
.mypy_cache | ||
.cache/ | ||
|
||
# Original files | ||
orig/*/* | ||
!orig/*/.gitkeep | ||
*.dol | ||
*.rel | ||
*.elf | ||
*.o | ||
*.out | ||
*.elf | ||
*.dol | ||
*.a | ||
*.d | ||
*.txt | ||
build/** | ||
compiler | ||
__pycache__ | ||
genCsv.py | ||
checkObject.py | ||
sanity_check.py | ||
.ninja_log | ||
.ninja_deps | ||
*.map | ||
*.MAP | ||
|
||
# Build files | ||
build/ | ||
.ninja_* | ||
build.ninja | ||
deps.zip | ||
Compilers.zip | ||
Compilers/* | ||
*.ninja | ||
*.ninja_log | ||
doxygen/* | ||
scripts/* | ||
|
||
# decompctx output | ||
ctx.* | ||
*.ctx | ||
|
||
# Generated configs | ||
objdiff.json | ||
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,25 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Linux", | ||
"includePath": [ | ||
"${workspaceFolder}/include/**", | ||
"${workspaceFolder}/libs/**/", | ||
"${workspaceFolder}/build/**/include" | ||
], | ||
"cStandard": "c99", | ||
"cppStandard": "c++98", | ||
"intelliSenseMode": "linux-clang-x86", | ||
"compilerPath": "", | ||
"configurationProvider": "ms-vscode.makefile-tools", | ||
"browse": { | ||
"path": [ | ||
"${workspaceFolder}/include", | ||
"${workspaceFolder}/*/" | ||
], | ||
"limitSymbolsToIncludedHeaders": true | ||
} | ||
} | ||
], | ||
"version": 4 | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"[c]": { | ||
"files.encoding": "utf8", | ||
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd" | ||
}, | ||
"[cpp]": { | ||
"files.encoding": "utf8", | ||
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd" | ||
}, | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.black-formatter" | ||
}, | ||
"editor.tabSize": 4, | ||
"files.autoSave": "onFocusChange", | ||
"files.insertFinalNewline": true, | ||
"files.trimFinalNewlines": true, | ||
"files.associations": { | ||
"*.inc": "c", | ||
".clangd": "yaml" | ||
}, | ||
// Disable C/C++ IntelliSense, use clangd instead | ||
"C_Cpp.intelliSenseEngine": "disabled", | ||
} |
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 | ||
} | ||
}, | ||
] | ||
} |
Oops, something went wrong.