From f6e4fd1ba998b6c6798c906aa6bba001448d559b Mon Sep 17 00:00:00 2001 From: rebuilt Date: Sat, 10 Jun 2023 11:38:54 -0700 Subject: [PATCH] docs: add contributing doc --- CONTRIBUTING.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..bb573e18 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,10 @@ +# Commit Type Guideline + * build: changes that affect the build system or external dependencies (example scopes: npm, pip, rg) + * ci: changes to CI configuration files and scripts (example scopes: format, lint, issue_templates) + * docs: changes to the documentation only + * feat: new feature for the user + * fix: bug fix + * perf: performance improvement + * refactor: code change that neither fixes a bug nor adds a feature + * test: adding missing tests or correcting existing tests + * chore: all the rest, including version bump for plugins