brondijk.xyz

โ† Back to Resources

Windsurf / Cursor Global Rules

You can paste the text below into your globalrules.md file in Cursor or Windsurf. These will help you to have clear documentation, a more secure implementation and will make your project better.

Download Generalrules.md

๐Ÿ” Secrets Management

  • Store secrets (API keys, DB credentials) in .env files
  • NEVER expose secrets to client-side code
  • Add .env and other sensitive files to .gitignore

๐Ÿ“ Documentation

  • Always use Markdown for documentation and README.md files
  • Each project must include a README.md with:
    • Title
    • Description
    • Setup instructions
    • Usage examples
    • License information

๐Ÿงญ Project Planning

  • Every project must begin with an instructions.md file
  • This file should describe:
    • The end goal and success criteria
    • Scope and key features
    • Tech stack decisions
  • It must be written before any code is committed

๐Ÿงช Local Testing

  • Kill any running local servers before starting a new one
  • Always run Python-related tests using Python 3 (python3)

๐Ÿช“ File Size & Modularity

  • Avoid single files exceeding 500 lines unless justified (e.g., auto-generated code)
  • For styles: split large styles.css files into domain-based or component-based partials
    • Use @import or PostCSS includes to compose them
    • Example: layout.css, buttons.css, modals.css
  • For JS/TS: split functions and classes into separate modules or services when possible
  • For Markdown: split long documentation into logical subpages (e.g., usage.md, api.md)
  • Use folder-based organization with an index file for clean exports (e.g., index.ts)

๐ŸŒ Multi-Page HTML Projects

  • Base Template (base.html)
    • If your project includes more than one HTML page, always create a base.html to serve as the layout scaffold
    • Include shared elements: <head>, GTAG script, header, footer
    • Inherit or import base.html to reduce duplication and ensure consistency
  • Clean URLs with .htaccess
    • Always include an .htaccess file to:
      • Remove .html extensions from URLs
      • Redirect /index to /
      • (Optional) Enforce HTTPS and www. prefix in production