I am open to, and grateful for, any contributions made by the community. By contributing to rehype-code-titles
, you agree to abide by the code of conduct.
Before opening an issue, please search the issue tracker to make sure your issue hasn't already been reported.
I use the issue tracker to keep track of bugs and improvements to rehype-code-titles
. I encourage you to open issues to discuss improvements, architecture, theory, internal implementation, etc. If a topic has been discussed before, I will ask you to join the previous discussion.
If you are just asking a question about 'How to ...' please start the title of your issue as: [Question]
.
Please structure questions and issues in a manner that uses syntax highlighting, indentation, & split text into paragraphs. Try to state your question/issue as concisely as possible.
Please keep in mind that I spend my free time trying to help you. You can make it easier for me if you provide versions of the relevant libraries and a runnable small project reproducing your issue. Make sure all the necessary dependencies are declared in package.json
so anyone can run npm install && npm start
and reproduce your issue.
Visit the issue tracker to find a list of open issues that need attention.
Fork, then clone the repo:
git clone https://github.com/{{ your username }}/rehype-code-titles.git
Building rehype-code-titles
Running the build script:
npm run build
yarn build
This repository makes use of @commitlint
and requires you to write your commits following this guideline. It also makes use of lint-staged
& husky
to check your code in the pre-commit hook. On commit your code will be linted, type checked, and should any of the code touch test suites those suites will be ran.
# Do stuff
yarn commit
# eslint --fix
# tsc --esModuleInterop --noEmit
# jest --lastCommit --maxWorkers=25% --passWithNoTests
To run only tests:
npm test
npm run test:ci
npm run test:coverage
npm run test:watch
yarn test
yarn test:ci
yarn test:coverage
yarn test:watch
To run only linting:
npm run lint
yarn lint
To run only type-checking:
npm run type-check
yarn type-check
Improvements to the documentation are always welcome.
I have not made any examples since the code base is so small, but as this grows if anyone would like to run examples of what they have added as features feel free to do so!
The whole purpose behind this project is to get people contributing however large or small the contribution. Whether it be fixing a bug or adding a feature submit changes via a Pull Request.
In general, the contribution workflow looks like this:
- Open an issue in the issue tracker.
- Fork the repo.
- Create a new feature branch based off the
production
branch. - Make sure all tests, linting, and type-checking pass.
- Submit a pull request, referencing any issues it addresses.
Please try to keep your pull request focused in scope and avoid including unrelated commits.
After you have submitted your pull request, I'll try to get back to you as soon as possible. I may suggest some changes or improvements.
Thank you for contributing!