tiptap/docs/src/docPages/overview/contributing.md
2020-10-30 16:13:47 +01:00

1.2 KiB
Raw Blame History

Contributing

toc

Introduction

tiptap would be nothing without its lively community. Contributions have always been and will always be welcome. Here is a little bit you should know, before you send your contribution:

Welcome examples

  • Failing regression tests as bug reports
  • Documentation improvements, e. g. fix a typo, add a section
  • New features for existing extensions, e. g. a new configureable option
  • New extensions, which dont require changes to the core or other core extensions
  • Well explained, non-breaking changes to the core

Our code style

There is an eslint config that ensures a consistent code style. To check for errors, run $ yarn run lint. Thatll be checked when you send a pull request, too. Make sure its passing, before sending a pull request.

Testing for errors

Your pull request will automatically execute all our existing tests. Make sure that they all pass, before sending a pull request. Run all tests locally with $ yarn run test or run single tests (e. g. when writing new ones) with $ yarn run test:open.

Any further questions? Create a new issue or discussion in the repository. Well get back to you.