Back to list
openshift

code-formatting

by openshift

Hyperscale OpenShift - clusters with hosted control planes

501🍴 433📅 Jan 23, 2026

SKILL.md


name: Code Formatting description: "MANDATORY: When writing Go tests, you MUST use 'When...it should...' format for ALL test names. When writing any Go code, you MUST remind user to run 'make lint-fix' and 'make verify'. These are non-negotiable HyperShift requirements."

Code Quality, Formatting and Conventions

Code Formatting and Linting

  • Use make lint-fix after writing Go code to automatically fix most linting issues
  • Run make verify to verify both linting and tests pass before committing
  • For markdown files, use make verify-codespell to catch spelling errors

Test Conventions - MANDATORY

NON-NEGOTIABLE RULE: Every Go test name MUST follow this exact format:

name: "When <condition>, it should <expected behavior>"

Examples:

name: "When NodePool has valid image ID, it should create Azure machine template"
name: "When subnet ID is invalid, it should return error"
name: "When encryption is enabled, it should configure disk encryption set"

NEVER use generic names like:

  • ❌ "nominal case without managed identity"
  • ❌ "basic Azure machine template with ImageID"
  • ❌ "error case - invalid subnet ID"

ALWAYS use "When...it should..." format:

  • ✅ "When NodePool has no managed identity, it should create template without identity"

  • ✅ "When NodePool has ImageID, it should create basic Azure machine template"

  • ✅ "When subnet ID is invalid, it should return error with subnet parse message"

  • Always include unit tests when creating new functions or modifying existing ones

Quick Checklist

Before committing:

  • Ran make lint-fix on Go code
  • Ran make verify (passes)
  • Tests use "When...it should..." naming format
  • New functions have unit tests
  • Markdown checked with make verify-codespell

Score

Total Score

70/100

Based on repository quality metrics

SKILL.md

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

+20
LICENSE

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

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 500以上

+10
最近の活動

3ヶ月以内に更新

+5
フォーク

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

+5
Issue管理

オープンIssueが50未満

0/5
言語

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

+5
タグ

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

0/5

Reviews

💬

Reviews coming soon