From ddaa0e5f05a929d429e8937a765eaa9d35b8fb89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter?= Date: Wed, 30 Jul 2025 12:30:06 +0200 Subject: [PATCH] .gitignore --- .gitignore | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5bbffc0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,47 @@ +*.orig +*.pyc +*.swp +*.symcache +.env + +/.cargo_home/ +/.idea/ +/.vs/ +/.vscode/ +gclient_config.py_entries +/target/ +/std/hash/_wasm/target +/tests/wpt/runner/manifest.json +/third_party/ +/tests/napi/node_modules +/tests/napi/build +/tests/napi/third_party_tests/node_modules + +# MacOS generated files +.DS_Store +.DS_Store? + +# Flamegraphs +/flamebench*.svg +/flamegraph*.svg + +# WPT generated cert files +/tests/wpt/runner/certs/index.txt* +/tests/wpt/runner/certs/serial* + +/ext/websocket/autobahn/reports + +# Coverage files +/coverage + +# JUnit files produced by deno test --junit +junit.xml + +# Jupyter files +.ipynb_checkpoints/ +Untitled*.ipynb + +# playwright browser binary cache +/.ms-playwright + +**/.claude/settings.local.json \ No newline at end of file