Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 1.22 KB

File metadata and controls

31 lines (19 loc) · 1.22 KB

Development Conventions and Guidelines

Linting Guidelines

Please ensure prettifing the .mcp.json and .claude-plugin/plugin.json using Prettier by execute npm run prettier before you commit your change.

Git Guidelines

No Merge Commits

Please use rebase instead of merge to update a branch to the latest main. This helps keeping a clean commit history in the project.

Commit Message Style

This project uses the Conventional Commits specification to ensure a consistent way of dealing with commit messages.

feat(.mcp.json): Add UI5 MCP server

Offers great UI5 expertise for Claude Code users.

Structure

type(scope): Description
  • required: every commit message has to start with a lowercase type. The project has defined a set of valid types.
  • optional: the scope is typically the affected module. If multiple modules are affected by the commit, skip it or define a meaningful abstract scope.
  • required: the description has to follow the Sentence Case style. Only the first word and proper nouns are written in uppercase.