スキル一覧に戻る
jkuri

coding-style

by jkuri

Figma-like SVG canvas editor built with React and WebGL.

0🍴 0📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: Coding Style description: Enforced coding standards and best practices for the project, including rules on comments and libraries.

Coding Style & Standards

1. Comments

  • NO COMMENTS in Code: Do not generate comments explaining what the code does (e.g., // This function adds two numbers). Code must be self-documenting.

2. Icons

  • Library: ALWAYS use @hugeicons/core-free-icons and @hugeicons/react.

  • Component: Use the HugeiconsIcon wrapper component.

  • Pattern:

    import { SomeIcon } from "@hugeicons/core-free-icons";
    import { HugeiconsIcon } from "@hugeicons/react";
    
    <HugeiconsIcon icon={SomeIcon} className="size-4" />
    
  • No Custom SVGs: Do not create custom SVG components if a suitable Hugeicon acts as a replacement.

3. UI Components

  • Tailwind CSS: Use Tailwind utility classes for styling.
  • Base UI / Shadcn: Prefer existing basic components from @/components/ui.

4. TypeScript / React

  • Types: Explicitly define types/interfaces. Avoid any.
  • Functional Components: Use React functional components.
  • Clean Code: Keep components small and focused.

スコア

総合スコア

65/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です