forked from NickHugi/PyKotor
-
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.
- Loading branch information
1 parent
17e01b8
commit 5951ac8
Showing
155 changed files
with
20,187 additions
and
119,424 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 |
---|---|---|
@@ -1 +1,85 @@ | ||
# Add directories or file patterns to ignore during indexing (e.g. foo/ or *.csv) | ||
.git | ||
.idea | ||
.idea/* | ||
venv | ||
.venv* | ||
errorlog.txt | ||
dist | ||
build | ||
/__main__.dist/ | ||
/__main__.build/ | ||
/__main__.onefile-build/ | ||
*.zip | ||
dist-mac | ||
dist-lin | ||
dist-win | ||
nuitka_dist | ||
pyinstaller.exe | ||
build-windows.ps1 | ||
__pycache__ | ||
.git | ||
/pykotor/gl/window.py | ||
*.egg-info* | ||
ignore | ||
*.pyc | ||
.history | ||
*.heapsnapshot | ||
*.cpuprofile | ||
*.prof | ||
.vscode/PythonImportHelper*.json | ||
tests/tmp/* | ||
tests/tslpatcher/tmp/* | ||
output.prof | ||
*.spec | ||
errorlog.txt | ||
*.log | ||
EXE-*.toc | ||
*.pkg | ||
*.exe.manifest | ||
*PYZ-*.pyz | ||
base_library.zip | ||
Analysis-*.toc | ||
PKG-*.toc | ||
Tree-*.toc | ||
logs/* | ||
.vscode/PythonImportHelper-v2-Completion.json | ||
.mypy_cache | ||
/toolset/help/ | ||
/toolset/kits/ | ||
Tools/HolocronToolset/src/toolset/kits | ||
Tools/HolocronToolset/src/toolset/kits/*/door0_k1.utd | ||
Tools/HolocronToolset/src/toolset/kits/*/* | ||
/Tools/HolocronToolset/toolset/kits/ | ||
.idea/misc.xml | ||
.idea/PyKotor.iml | ||
.idea/misc.xml | ||
.idea/PyKotor.iml | ||
.mypy_cache | ||
.venv | ||
.venv_wsl | ||
.secrets | ||
tests/results/ | ||
*.pstat | ||
installlog.txt | ||
./vendor | ||
powershell-bin/ | ||
.env | ||
typings/* | ||
Tools/HoloPatcher/src/holopatcher/node_modules | ||
Tools/HoloPatcher/src/holopatcher/package-lock.json | ||
Tools/HoloPatcher/src/holopatcher/package.json | ||
.history | ||
.history* | ||
.aider* | ||
*scriptdefs.py | ||
*scriptlib.py | ||
Libraries/PyKotorGL/src/pykotor/gl/models/predefined_mdl.py | ||
HolocronToolset/downloads | ||
*toolset/kits/* | ||
*HolocronToolset/src/toolset/uic | ||
*HolocronToolset/src/toolset/uic/* | ||
toolset/*_extract | ||
Tools/HolocronToolset/src/ui/stylesheet_resources.py | ||
*.mypy_cache* | ||
*__pycache__* |
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 |
---|---|---|
@@ -1,79 +1,130 @@ | ||
{ | ||
"python.analysis.inlayHints.callArgumentNames": "off", | ||
"python.analysis.inlayHints.functionReturnTypes": true, | ||
"python.analysis.inlayHints.variableTypes": false, | ||
"python.analysis.typeCheckingMode": "basic", | ||
"python.analysis.enablePytestSupport": true, | ||
"python.analysis.extraPaths": [ | ||
"./Tools/BatchPatcher/src", | ||
"./Tools/GuiConverter/src", | ||
"./Tools/HolocronToolset/src", | ||
"./Tools/HoloPatcher/src", | ||
"./Tools/KotorDiff/src", | ||
"./Tools/MDLDecompile/src", | ||
"./Libraries/PyKotor/src", | ||
"./Libraries/PyKotorGL/src", | ||
"./Libraries/PyKotorFont/src", | ||
"./Libraries/Utility/src" | ||
], | ||
"python.missingPackage.severity": "Information", | ||
|
||
"python.terminal.launchArgs": [ | ||
"-i", | ||
"-m", | ||
"debugpy", | ||
"--listen", | ||
"5678", | ||
"--wait-for-client" | ||
], | ||
"python.testing.unittestEnabled": true, | ||
"python.testing.unittestArgs": [ | ||
"-v", | ||
"-s", | ||
"./tests", | ||
"-p", | ||
"*test*.py" | ||
], | ||
|
||
"launch": { | ||
"compounds": [], | ||
"justMyCode": false, | ||
"debugStdLib": true | ||
}, | ||
|
||
"github-actions.workflows.pinned.workflows": [ | ||
".github/workflows/publish_and_test_pykotor.yml" | ||
], | ||
|
||
"mypy.extraArguments": [ | ||
"--exclude=./.venv", | ||
"--exclude=tests/results", | ||
"--check-untyped-defs", | ||
"-v", | ||
"--explicit-package-bases" | ||
], | ||
"mypy.runUsingActiveInterpreter": true, | ||
"mypy-type-checker.args": [ | ||
"--check-untyped-defs", | ||
"--explicit-package-bases" | ||
], | ||
"mypy-type-checker.preferDaemon": true, | ||
"mypy-type-checker.reportingScope": "file", | ||
"mypy-type-checker.importStrategy": "fromEnvironment", | ||
|
||
"remote.WSL.fileWatcher.polling": true, | ||
|
||
"files.watcherExclude": { | ||
"**/.git/**": true | ||
}, | ||
"editor.inlineSuggest.enabled": true, | ||
"editor.quickSuggestions": { | ||
"other": "inline", | ||
"comments": true, | ||
"strings": true | ||
}, | ||
"editor.quickSuggestionsDelay": 100, | ||
"debugpy.debugJustMyCode": true, | ||
"pythonTestExplorer.outputs.showOutputsOnRun": true, | ||
"pythonTestExplorer.testFramework": "unittest" | ||
} | ||
"python.analysis.inlayHints.callArgumentNames": "off", | ||
"python.analysis.inlayHints.functionReturnTypes": true, | ||
"python.analysis.inlayHints.variableTypes": false, | ||
"python.analysis.typeCheckingMode": "basic", | ||
"python.analysis.enablePytestSupport": true, | ||
"python.analysis.extraPaths": [ | ||
"./Tools/BatchPatcher/src", | ||
"./Tools/GuiConverter/src", | ||
"./Tools/HolocronToolset/src", | ||
"./Tools/HoloPatcher/src", | ||
"./Tools/KotorDiff/src", | ||
"./Tools/MDLDecompile/src", | ||
"./Libraries/PyKotor/src", | ||
"./Libraries/PyKotorGL/src", | ||
"./Libraries/PyKotorFont/src", | ||
"./Libraries/Utility/src" | ||
], | ||
"python.missingPackage.severity": "Information", | ||
"python.terminal.launchArgs": [ | ||
"-i", | ||
"-m", | ||
"debugpy", | ||
"--listen", | ||
"5678", | ||
"--wait-for-client" | ||
], | ||
"python.testing.unittestEnabled": true, | ||
"python.testing.unittestArgs": [ | ||
"-v", | ||
"-s", | ||
"./tests", | ||
"-p", | ||
"*test*.py" | ||
], | ||
"launch": { | ||
"compounds": [], | ||
"justMyCode": false, | ||
"debugStdLib": true | ||
}, | ||
"github-actions.workflows.pinned.workflows": [ | ||
".github/workflows/publish_and_test_pykotor.yml" | ||
], | ||
"mypy.extraArguments": [ | ||
"--exclude=./.venv", | ||
"--exclude=tests/results", | ||
"--check-untyped-defs", | ||
"-v", | ||
"--explicit-package-bases" | ||
], | ||
"mypy.runUsingActiveInterpreter": true, | ||
"mypy-type-checker.args": [ | ||
"--check-untyped-defs", | ||
"--explicit-package-bases" | ||
], | ||
"mypy-type-checker.preferDaemon": true, | ||
"mypy-type-checker.reportingScope": "file", | ||
"mypy-type-checker.importStrategy": "fromEnvironment", | ||
"remote.WSL.fileWatcher.polling": true, | ||
"files.watcherExclude": { | ||
"**/.git/**": true | ||
}, | ||
"editor.inlineSuggest.enabled": true, | ||
"editor.quickSuggestions": { | ||
"other": "inline", | ||
"comments": true, | ||
"strings": true | ||
}, | ||
"editor.quickSuggestionsDelay": 100, | ||
"debugpy.debugJustMyCode": true, | ||
"pythonTestExplorer.outputs.showOutputsOnRun": true, | ||
"pythonTestExplorer.testFramework": "unittest", | ||
"C_Cpp_Runner.msvcBatchPath": "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Auxiliary/Build/vcvarsall.bat", | ||
"C_Cpp_Runner.cCompilerPath": "gcc", | ||
"C_Cpp_Runner.cppCompilerPath": "g++", | ||
"C_Cpp_Runner.debuggerPath": "gdb", | ||
"C_Cpp_Runner.cStandard": "", | ||
"C_Cpp_Runner.cppStandard": "", | ||
"C_Cpp_Runner.useMsvc": false, | ||
"C_Cpp_Runner.warnings": [ | ||
"-Wall", | ||
"-Wextra", | ||
"-Wpedantic", | ||
"-Wshadow", | ||
"-Wformat=2", | ||
"-Wcast-align", | ||
"-Wconversion", | ||
"-Wsign-conversion", | ||
"-Wnull-dereference" | ||
], | ||
"C_Cpp_Runner.msvcWarnings": [ | ||
"/W4", | ||
"/permissive-", | ||
"/w14242", | ||
"/w14287", | ||
"/w14296", | ||
"/w14311", | ||
"/w14826", | ||
"/w44062", | ||
"/w44242", | ||
"/w14905", | ||
"/w14906", | ||
"/w14263", | ||
"/w44265", | ||
"/w14928" | ||
], | ||
"C_Cpp_Runner.enableWarnings": true, | ||
"C_Cpp_Runner.warningsAsError": false, | ||
"C_Cpp_Runner.compilerArgs": [], | ||
"C_Cpp_Runner.linkerArgs": [], | ||
"C_Cpp_Runner.includePaths": [], | ||
"C_Cpp_Runner.includeSearch": [ | ||
"*", | ||
"**/*" | ||
], | ||
"C_Cpp_Runner.excludeSearch": [ | ||
"**/build", | ||
"**/build/**", | ||
"**/.*", | ||
"**/.*/**", | ||
"**/.vscode", | ||
"**/.vscode/**" | ||
], | ||
"C_Cpp_Runner.useAddressSanitizer": false, | ||
"C_Cpp_Runner.useUndefinedSanitizer": false, | ||
"C_Cpp_Runner.useLeakSanitizer": false, | ||
"C_Cpp_Runner.showCompilationTime": false, | ||
"C_Cpp_Runner.useLinkTimeOptimization": false, | ||
"C_Cpp_Runner.msvcSecureNoWarnings": false | ||
} |
Oops, something went wrong.