On the other hand, if you're talking about not trusting the admin to create repo names with the proper naming convention, you have several solutions and alternatives.
(1) is it sufficient to warn him so he can log on to the server, remove the offending repo, and fix up the config again?
If so, use a PRE_CREATE or POST_CREATE trigger (see triggers.html in the gitolite docs). Check argument 2, test it, and print a noisy message if needed.
(2) if a warning is not sufficient, and you need to kill it outright, use a PRE_CREATE trigger, except it has to be in perl. Use src/lib/Gitolite/Triggers/AutoCreate.pm as a model, except you have to check $_[1] (the second argument).
(3) are you also an admin, perhaps the "main" one? If so, see delegation (see deleg.html in the gitolite documentation). This will have more constraints though (like if he is allowed to add keys, he will simply add a new key with your name and thus bypass the restriction.