Skip to main content

dart

Conventions and best practices for writing Dart code in this workspace.

الانتقال إلى التثبيت

معلومات المصدر

المستودع
genkit-ai/genkit-dart
آخر نشاط في المصدر
١٠ يوليو ٢٠٢٦ في ٢٢:١٣
لغة SKILL.md المكتشفة
الإنجليزية
النجوم
١٥٩
التفرعات
٣١

خيارات التثبيت

يُحدَّد Prompt الذي يراجع المصدر أولًا بشكل افتراضي. يمكنك التبديل إلى أمر مباشر أو تنزيل نسخة محلية.

مراجعة ملفات المصدر

اقرأ SKILL.md وأي ملفات مرافقة يعرضها SkillsMP قبل أن تقرر التثبيت.

عرض SKILL.md

SKILL.md
تعليمات المصدر · معاينة للقراءة فقط
name
dart
description
Conventions and best practices for writing Dart code in this workspace.
# Dart coding conventions - Prefer `final` over `var` where the value never changes. - Use lowerCamelCase for variables and functions, UpperCamelCase for types. - Keep functions small and focused; prefer pure functions where practical. - Always handle errors explicitly; avoid swallowing exceptions silently. - Add a doc comment (`///`) to every public declaration. - Use `dart format` defaults (80-column width) for all files. - Prefer collection literals and spread operators over imperative building.
عرض على GitHub