From 80db787f335e19671728129262411afdd6aff10e Mon Sep 17 00:00:00 2001 From: "whitesource-bolt-for-github[bot]" <42819689+whitesource-bolt-for-github[bot]@users.noreply.github.com> Date: Thu, 30 Dec 2021 08:03:41 +0000 Subject: [PATCH 1/2] Add .whitesource configuration file --- .whitesource | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .whitesource diff --git a/.whitesource b/.whitesource new file mode 100644 index 0000000..55b922e --- /dev/null +++ b/.whitesource @@ -0,0 +1,12 @@ +{ + "scanSettings": { + "baseBranches": [] + }, + "checkRunSettings": { + "vulnerableCheckRunConclusionLevel": "failure", + "displayMode": "diff" + }, + "issueSettings": { + "minSeverityLevel": "LOW" + } +} \ No newline at end of file From b18a95ccca7f5b3e9584c1dc4c25b22505c5e552 Mon Sep 17 00:00:00 2001 From: akax <32862241+joseguzman1337@users.noreply.github.com> Date: Tue, 6 Jan 2026 07:39:45 +0800 Subject: [PATCH 2/2] Add macOS system files to .gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add .DS_Store pattern to ignore macOS folder metadata - Add ._* pattern to ignore AppleDouble files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .gitignore | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 0f5ef9a..11ff03a 100644 --- a/.gitignore +++ b/.gitignore @@ -10,20 +10,17 @@ .DS_Store *.swp *.bin - # Windows */Thumbs.db - # VIM .ropeproject/* *.un~ *.*~ - # Ignore all PyCharm files .idea/* - # Ignore profiling dumps *.prof - # Testing stuff -.tox \ No newline at end of file +.tox +# macOS system files +._*