Other .mdc

Nativescript

Cursor rules for NativeScript development.

How to use
  1. Copy the rule content.
  2. In your project root, create .cursorrules or .cursor/rules/nativescript.mdc
  3. Paste the content and save.

// NativeScript .cursorrules

// NativeScript best practices

const nativeScriptBestPractices = [ “Utilize @nativescript/core features and APIs where applicable”, “Utilize common web APIs where applicable”, “Implement proper navigation using NativeScript Navigation”, “Use NativeScript’s assets folder for images, sounds or videos and use the fonts folder for custom fonts”, “Implement proper error handling where possible” ];

// Folder structure

const folderStructure = src/ assets/ components/ services/ utils/;

// Additional instructions

const additionalInstructions = `

  1. Use TypeScript for type safety
  2. Use @nativescript/secure-storage for sensitive data
  3. Use @nativescript/biometrics for anything related to biometrics
  4. Always use nativescript-fonticon for font icons
  5. Follow NativeScript best practices for performance `;

Similar rules

More in Other →