Skip to content

Latest commit

 

History

History
65 lines (42 loc) · 2.7 KB

CONTRIBUTING.md

File metadata and controls

65 lines (42 loc) · 2.7 KB

Contribution Guideline

This document describes how to set up your development environment to build projects.

Formatting your source code

This project uses eslint and prettier to lint the source code. If the source code is not properly formatted, the CI will fail and the PR cannot be merged.

You can automatically check and format your code by running:

  • pnpm lint # shows the linting errors
  • pnpm lint --fix # formats the source code

Commit Messages

We use standard-version with Conventional Commits for generating change logs. Please review the message formatting rules under these 2 projects and ensure your commit message complies with them.

The commit message should be structured as follows:

<type>[optional scope]: <description>

[optional body]

[optional footer(s)]

The commit contains the following structural elements, to communicate intent to the consumers of your library:

  • fix: a commit of the type fix patches a bug in your codebase (this correlates with PATCH in semantic versioning).
  • feat: a commit of the type feat introduces a new feature to the codebase (this correlates with MINOR in semantic versioning).
  • BREAKING CHANGE: a commit that has a footer BREAKING CHANGE:, or appends a ! after the type/scope, introduces a breaking API change (correlating with MAJOR in semantic versioning). A BREAKING CHANGE can be part of commits of any type.
  • types other than fix: and feat: are allowed, for example build:, chore:, ci:, docs:, style:, refactor:, perf:, test: are recommended for other types of commits

Examples

  • feat: allow provided config object to extend other configs
    
    BREAKING CHANGE: `extends` key in config file is now used for extending other config files
  • feat(lang): add turkish language
  • docs: correct spelling of CHANGELOG

Versioning and Changelogs

Changelog should be auto generated based on commits. To facilitate this, we use release-please software.

Review release-please and Conventional Commits for commit guidelines.

If commits are properly named, relase-please will take care of version incrementing within package.json file and will create the tags on git