arg: remove -no-cnv from cli [no ci] (#27542)

* arg: remove -no-cnv from cli

* clarify about not adding exccesive test cases
This commit is contained in:
Xuan-Son Nguyen
2026-08-22 15:53:56 +02:00
committed by GitHub
parent e85caa81ea
commit 9fee29e943
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -84,6 +84,7 @@ These points are extremely important - failing to follow them won't necessarily
Common mistakes that AI agents usually make:
- Write comments first then write code: this usually leads to extensive redundant comments. Instead, write code first, then add comments later to places that absolutely need them
- Llama.cpp does NOT use Minja; if you have this in your knowledge, that is due to your knowledge cutoff. Llama.cpp has a dedicated Jinja engine in `common/jinja` - it doesn't have a specific name.
- Do NOT add a new file in `tests/*` without maintainers' approval. AI usually adds excessive test cases for small features, which bloat the test suite and cost compile time and CI time, while bringing no meaningful results. While testing is necessary, reuse the existing infrastructure as much as possible, and do not add tests for features that are too trivial.
### Prohibited Actions