chore: .editorconfig + CI coverage gate + gitignore updates#84
chore: .editorconfig + CI coverage gate + gitignore updates#84DsThakurRawat merged 1 commit intomainfrom
Conversation
- .editorconfig: enforce 4-space Python, 2-space YAML/JS - .gitignore: add uvicorn.log, dashboard_build*.log patterns - python-ci.yml: add --cov-fail-under=70
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 58 minutes and 23 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Code Review
This pull request introduces an .editorconfig file to standardize formatting across the project and updates the .gitignore file to exclude various log files, temporary scripts, and generated directories. Feedback was provided regarding the .editorconfig to align the Python line length with existing project settings and to separate Rust and Go indentation rules. Additionally, a concern was raised about ignoring the entire docs/ directory in .gitignore, as it might inadvertently exclude documentation source files.
| [*.py] | ||
| indent_style = space | ||
| indent_size = 4 | ||
| max_line_length = 99 |
There was a problem hiding this comment.
| [*.{go,rs}] | ||
| indent_style = tab |
There was a problem hiding this comment.
| claude/ | ||
| output/ | ||
| deliverables/ | ||
| docs/ |
There was a problem hiding this comment.
What
.editorconfig: Consistent formatting rules.gitignore: Added log file patternspython-ci.yml: Added--cov-fail-under=70coverage gateImpact
No code changes. CI now enforces minimum 70% test coverage.