mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-10 08:04:05 +00:00
698 B
698 B
Contributing
General Rules
- As much as possible, try to follow the existing format of markdown and code.
- Don't forget to run
npm run lint
andnpm test
before submitting pull requests. - Make sure that 100% of your code is covered by tests.
Contributing New Data Structures
- Make your pull requests to be specific and focused. Instead of contributing "several data structures" all at once contribute them all one by one separately (i.e. one pull request for "RBTree", another one for "AATree" and so on).
- Enrich README.md for each of the data structure with explanations of the data structure.
- Describe what you do in code using comments.