Skip to content
This repository was archived by the owner on Feb 11, 2025. It is now read-only.

Latest commit

 

History

History
55 lines (41 loc) · 1.7 KB

CONTRIBUTING.md

File metadata and controls

55 lines (41 loc) · 1.7 KB

ligevan's Development Guidelines

Table of Contents

Requirements

Tools

  • Environment: Node.js v20.17.0
    • You can download it from here.
  • Package manager: yarn
    • To install it, run npm i -g yarn after installing Node.js.
    • Make sure install yarn v1 - aka yarn classic.
  • Code editor: Visual Studio Code
    • You can download it from here.

Extensions

Commit Conventions

Format: <type>: <subject>

Conventions:

  • add: Add a new code what does not exist.
  • update: Update an existing code.
  • fix: Fix a bug, issue, or error, tool scan warning.
  • docs: Update or add documentation.
  • feat: Add a new feature. (Usually used in the PR title)
  • refactor: Refactor an existing code.
  • delete: Delete an existing code.

Examples:

  • add: add a new feature
  • update: update a function
  • fix: fix a bug
  • docs: update contributing guidelines
  • feat: add a new feature
  • refactor: refactor a function
  • delete: delete a function

Note: Please follow the conventions to keep the commit history clean and easy to read.