forked from erez-c137/NetSpeedTray
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
122 lines (97 loc) · 1.95 KB
/
Copy path.gitignore
File metadata and controls
122 lines (97 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# Python and Bytecode
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.so
# Python Build and Distribution
# The dist/ and build/build/ folders are generated by the build script
dist/
/build/build/
# Local build tools auto-downloaded by build.bat (e.g. UPX). Kept out of git
# because they're platform binaries — see build.bat for fetch logic.
/build/tools/
# Virtual Environments
.venv/
venv/
env/
# Testing
.pytest_cache/
coverage/
*.cover
.hypothesis/
# IDEs and Editors
# Visual Studio Code
# Ignore all user-specific settings and temporary files inside the .vscode folder
.vscode/*
# DO NOT ignore these project-specific setting files, which ensure a consistent
# development environment for all contributors.
!.vscode/settings.json
!.vscode/launch.json
!.vscode/extensions.json
# Also ignore any multi-root workspace files, which are user-specific
!.vscode/*.code-workspace
# JetBrains (PyCharm)
.idea/
# Vim
*.swp
*.swo
# Operating Systems
# Windows
Thumbs.db
Desktop.ini
# macOS
.DS_Store
# Logs
# Ignore all log files and the specific build log
*.log
logs/
build_log.txt
# Build/test artifacts
build/exe/
.coverage
.coverage.*
# Environment Variables
.env
.env.local
.env.*.local
# -----------------------
# Project-Specific Rules
# -----------------------
# Temporary folders
.old/
.snapshots/
# Generated installer files and backups
/build/installer/
installer/
installer.iss.bak
# Packaged release artifacts
NetSpeedTray-Portable/
NetSpeedTray-Portable.zip
# Build outputs
checksums.txt
# Configuration files that might contain local state
config.json
# Personal developer files
src/structure.txt
release-template.md
*.lnk
.pylintrc
# Developer utility scripts
scripts/
# Documentation
Docs/
# AI and Agent-related files
.antigravity/
.agent/
.gemini/
.claude/
.claudeignore
CLAUDE.md
GEMINI.md
# Local debug artifacts (not part of the product)
live_layout.txt
layout_debug.txt
src/netspeedtray/tests/debug_layout.py
src/netspeedtray/utils/layout_logger.py