arya2004 / arya2004/Data-Filtering-Chatbot
Make .gitignore rules less aggressive
Open
enhancement
good first issue
hacktoberfest
hacktoberfest-accepted
python
refactor
- Dominant language
- Python
- Stars
- 2
- Forks
- 6
- PR merge metrics
- No merged PRs in 30d
Description
### 📄 .gitignore issue: Too broad
`.gitignore` currently ignores all `.csv` and `.xlsx` files.
#### ⚠️ Problem:
Important source files like `input_table.csv` are ignored.
#### ✅ Fix:
* Make ignores more specific, e.g.:
```
# Instead of:
*.csv
*.xlsx
# Use:
predicted.xlsx
output_*.csv
```
Contributor guide
Assessment
This issue has not been assessed yet.