Skip to content

Latest commit

 

History

History
55 lines (33 loc) · 1.65 KB

CONTRIBUTING.md

File metadata and controls

55 lines (33 loc) · 1.65 KB

Contributing to eslint-plugin-component

Welcome contribution from everyone in the community.
All communications in this repo will be by English.

Every contributor to eslint-plugin-component library should adhere to our Code of Conduct.
Please read the full text to understand what actions will and will not be tolerated.

1. Issues

You can contribute to eslint-plugin-component library via:

2. Pull Requests

Opening a pull request

You can raise your own PR. The title of your PR should match the following format:

<type>[folder scope]: <description>

Do not care about the number, or style of commits in your history, because I squash merge every PR into main.
Feel free to commit in whatever style you feel comfortable with.

2.1 Type

Type must be one of those

if you changed shipped code :

  • feat - for any new functionality additions
  • fix - for any fixes that don't add new functionality

if you haven't changed shipped code :

  • docs - if you only change documentation
  • test - if you only change tests

other :

  • chore - anything else

2.2 Folder Scope

The name of root-folder that you made changes. (ex: root, docs, lib, tests)
If you made changes across multiple folders, writing folder scope is optional.

2.3 Description

A clear and concise description of what the pr is about.