Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.28 KB

CONTRIBUTING.md

File metadata and controls

29 lines (21 loc) · 1.28 KB

Contributing

Thanks for your interest in contributing to TreeSitter Playground! We're glad you're here.

Submitting a pull request

  1. Fork and clone the repository
  2. Create a new branch (git checkout -b my-branch-name)
  3. Run the development server (npm run dev)
  4. Make your change
  5. Format your code (npm run format)
  6. Commit your changes with a descriptive commit message (git commit -am 'Add some feature')
  7. Push to the branch (git push origin my-branch-name)
  8. Create a Pull Request from your branch
  9. Wait for your pull request to be reviewed and merged

Here are a few things you can do that will increase the likelihood of your pull request being accepted:

  • Keep your change as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests.
  • Write a good commit message.

Resources