AI SummaryA Cursor-integrated coding standards and linting configuration toolkit for NeMo Curator projects, helping teams enforce consistent data processing code quality with Ruff-based rules and exceptions.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to add the "Curator — Cursor Rules" prompt rules to my project. Repository: https://github.com/NVIDIA-NeMo/Curator Please read the repo to find the rules/prompt file, then: 1. Download it to the correct location (.cursorrules, .windsurfrules, .github/prompts/, or project root — based on the file type) 2. If there's an existing rules file, merge the new rules in rather than overwriting 3. Confirm what was added
Description
Scalable data pre processing and curation toolkit for LLMs
`examples/` directory
• No __init__.py required (INP001)
Linting and Formatting
The project uses Ruff for linting and formatting with line length of 119 characters.
Allowed Patterns
• ✅ Print statements (T20 ignored) • ✅ Boolean arguments in functions (FBT ignored) • ✅ df as variable name for DataFrames (PD901 ignored) • ✅ TODOs without author/link (TD002, TD003 ignored) • ✅ Long exception messages (TRY003 ignored) • ✅ Accessing private attributes (SLF001 ignored) • ✅ Branching after return (RET505-508 ignored)
Required Patterns
• ❌ No docstrings required (D ignored) • ❌ No pathlib enforcement (PTH ignored) • ❌ No logging enforcement (G ignored) • ✅ Type annotations for functions (except args, *kwargs, special methods)
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster
Works With
Any AI assistant that accepts custom rules or system prompts