Choose your assistant and follow the step-by-step guide
No emojis anywhere
Balanced approach
Minimal restrictions
Cursor will automatically apply rules to all AI interactions. Perfect for IDE-integrated emoji control.
mkdir -p .cursor/rulescurl https://nomoji.dev/api/cursor-rules/default -o .cursor/rules/nomoji.mdcCursor will automatically detect and apply the rules. Open Cursor in your project and test it out!
Ask Cursor to "Create a README with installation instructions"
✓ The output should not contain any emojis
Claude Code will proactively check for emojis using a specialized subagent. Best for automatic detection and fixes.
mkdir -p .claude/agentscurl https://nomoji.dev/api/claude/default -o .claude/agents/nomoji.mdcThe nomoji subagent will automatically run after code generation to check for emojis.
Create a test file:
echo "console.log('🚀 Test');" > test.jsAsk Claude to review it - nomoji should automatically flag the emoji
Configure Copilot to avoid emoji suggestions in VS Code and JetBrains IDEs.
mkdir -p .vscodeAdd this to your .vscode/settings.json:
{
"github.copilot.advanced": {
"customInstructions": "Do not use emojis in code, documentation, console output, CLI tools, logging, or commit messages."
}
}Reload Copilot: Cmd/Ctrl + Shift + P → "Copilot: Reload"
Start typing a console.log statement
✓ Copilot suggestions should not contain emojis
Configure Gemini CLI to follow emoji-free guidelines in terminal-based workflows.
mkdir -p ~/.geminicurl https://nomoji.dev/api/template/default/generic -o ~/.gemini/nomoji-rules.mdcat > ~/.gemini/config.json << 'EOF'
{
"systemInstructions": {
"include": ["~/.gemini/nomoji-rules.md"]
}
}
EOFRun Gemini normally - it will follow emoji-free guidelines
gemini "Create a hello world server"OpenAI Codex is an AI coding agent included in ChatGPT Plus, Pro, Business, Edu, and Enterprise plans. Configure it for emoji-free code generation.
npm i -g @openai/codexRequires a ChatGPT Plus, Pro, Business, Edu, or Enterprise plan
curl https://nomoji.dev/api/template/default/openai-codex -o ~/nomoji-codex.mdcodex config --system-instructions ~/nomoji-codex.mdCheck Codex docs for exact config command syntax
Run a test prompt:
codex "Create a hello world Express server"✓ The output should not contain any emojis