From ac119aa46a742c3b2a9920ac6471a77707934bbf Mon Sep 17 00:00:00 2001 From: Bretton May Date: Sun, 5 Oct 2025 19:47:20 -0700 Subject: [PATCH] chore: Remove .idea IDE config from version control MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit IDE configuration files should not be tracked in git. These files are already in .gitignore but were committed before the ignore rule was added. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .idea/.gitignore | 8 -------- .idea/Coves.iml | 9 --------- .idea/dataSources.xml | 17 ----------------- .idea/modules.xml | 8 -------- .idea/vcs.xml | 6 ------ 5 files changed, 48 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/Coves.iml delete mode 100644 .idea/dataSources.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/Coves.iml b/.idea/Coves.iml deleted file mode 100644 index 5e764c4..0000000 --- a/.idea/Coves.iml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml deleted file mode 100644 index 25a87bb..0000000 --- a/.idea/dataSources.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - postgresql - true - org.postgresql.Driver - jdbc:postgresql://localhost:5433/postgres - - - - - - $ProjectFileDir$ - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 3578484..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file -- 2.51.2