Skip to content

Commit 52ef026

Browse files
author
Sergey
committed
chore: add gitignore entries for WSL artifacts and stale git fragments
1 parent c2c844a commit 52ef026

4 files changed

Lines changed: 30 additions & 4 deletions

File tree

.gitignore

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ env/
3131
.ENV
3232

3333
# IDE
34-
.vscode/
34+
.vscode
3535
.idea/
3636
*.swp
3737
*.swo
@@ -91,3 +91,26 @@ tests/initial_test_state/custom_components/hacs/hacs_frontend/
9191
.auto-claude/
9292
.worktrees/
9393
.claude_settings.json
94+
95+
# Shell dotfiles (WSL2 artifacts)
96+
.bash_profile
97+
.bashrc
98+
.profile
99+
.zprofile
100+
.zshrc
101+
102+
# Tool configs
103+
.gitconfig
104+
.ripgreprc
105+
.mcp.json
106+
107+
# Git bare repo fragments
108+
HEAD
109+
config
110+
hooks
111+
objects
112+
refs
113+
.gitmodules
114+
115+
# Claude Code
116+
.claude/commands

tests/src/unit/test_dashboard_find_card_error.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
does NOT leak internal Python type names or tracebacks.
55
"""
66

7-
import pytest
87
from unittest.mock import AsyncMock, MagicMock
98

9+
import pytest
10+
1011
from ha_mcp.tools.tools_config_dashboards import register_config_dashboard_tools
1112

1213

tests/src/unit/test_deep_search_error_handling.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
leak internal tracebacks to clients (issue #517).
55
"""
66

7-
import pytest
87
from unittest.mock import AsyncMock, MagicMock
98

9+
import pytest
10+
1011
from ha_mcp.tools.tools_search import register_search_tools
1112

1213

tests/src/unit/test_tools_get_states.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
"""Unit tests for ha_get_states bulk state retrieval tool."""
22

3-
import pytest
43
from unittest.mock import AsyncMock, MagicMock
54

5+
import pytest
6+
67
from ha_mcp.tools.tools_search import register_search_tools
78

89

0 commit comments

Comments
 (0)