mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 17:03:05 +02:00
- Set oom_score_adj=1000 in git hooks so OOM killer targets pre-commit first, never crashing the PC - Cap Node.js heap to 512MB for eslint/prettier/vitest - Remove broken systemd-run cgroup wrapper (didn't work) - cppcheck: process files one-at-a-time, --check-level=normal - pytest: run packages sequentially in separate subprocesses - Remove --force from cppcheck (exponential memory on #ifdef combos)
73 lines
1.9 KiB
JSON
73 lines
1.9 KiB
JSON
{
|
|
"files.associations": {
|
|
"*.py": "python",
|
|
"stdio.h": "c"
|
|
},
|
|
"dart.flutterSdkPath": ".fvm/flutter_sdk",
|
|
"files.exclude": {
|
|
"**/*.png": true,
|
|
"**/*.jpg": true,
|
|
"**/*.jpeg": true,
|
|
"**/*.gif": true,
|
|
"**/*.webp": true,
|
|
"**/*.svg": true,
|
|
"**/*.ico": true,
|
|
"**/*.bmp": true,
|
|
"**/*.apkg": true,
|
|
"**/*.pdf": true,
|
|
"**/*.pyc": true,
|
|
"**/__pycache__": true,
|
|
".venv": true,
|
|
"**/.venv": true,
|
|
".ruff_cache": true,
|
|
".mypy_cache": true,
|
|
"C/misc/randomJPG": true,
|
|
"pomodoro_app/build": true,
|
|
"horatio/horatio_app/build": true,
|
|
"sonic_pi/build": true,
|
|
"CPP/mini_browser/build": true,
|
|
"**/.dart_tool": true,
|
|
"python_pkg/anki_decks/**/preview_images": true,
|
|
"python_pkg/download_cats/http_cat_cache": true,
|
|
"python_pkg/articles/uploads": true,
|
|
"python_pkg/praca_magisterska_video/images": true,
|
|
"**/generated_images_*": true,
|
|
"**/coverage": true
|
|
},
|
|
"search.exclude": {
|
|
"**/*.zip": true,
|
|
"**/*.so": true,
|
|
"**/*.o": true,
|
|
"**/*.flat": true,
|
|
"**/*.wav": true,
|
|
"**/*.mp3": true,
|
|
"**/*.ttf": true,
|
|
"**/*.woff": true,
|
|
"**/*.woff2": true,
|
|
"**/*.class": true,
|
|
"**/*.bin": true,
|
|
"**/*.db": true,
|
|
"**/*.sqlite": true,
|
|
"**/.dart_tool": true,
|
|
"**/ephemeral": true,
|
|
"**/node_modules": true,
|
|
"python_pkg/anki_decks": true,
|
|
"python_pkg/praca_magisterska_video": true,
|
|
"python_pkg/articles/uploads": true,
|
|
"python_pkg/download_cats/http_cat_cache": true
|
|
},
|
|
"coverage-gutters.coverageFileNames": [
|
|
"lcov.info",
|
|
"cov.xml",
|
|
"coverage.xml",
|
|
"cobertura.xml",
|
|
"jacoco.xml",
|
|
"coverage.cobertura.xml",
|
|
"coverage.lcov"
|
|
],
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.pytestArgs": ["python_pkg"],
|
|
"python-envs.alwaysUseUv": true,
|
|
"cmake.sourceDirectory": "/home/kuhy/testsAndMisc/pomodoro_app/linux"
|
|
}
|