Skip to content

Latest commit

 

History

History
64 lines (42 loc) · 1.4 KB

File metadata and controls

64 lines (42 loc) · 1.4 KB

Contributing

Thanks for your interest in contributing to @lopatnov/javascripttostring! Contributions of all kinds are welcome.

Ways to Contribute

  • Report bugs and suggest features via Issues
  • Fix bugs or implement new features via Pull Requests
  • Improve documentation
  • Write or improve tests

Getting Started

  1. Fork the repository on GitHub

  2. Clone your fork:

    git clone https://github.com/<YOUR-USERNAME>/jsToString
    cd jsToString
  3. Install dependencies:

    npm install
  4. Create a branch for your changes:

    git checkout -b my-feature
  5. Make your changes, then run tests and lint:

    npm test
    npm run check
  6. Commit and push:

    git push -u origin my-feature
  7. Open a Pull Request targeting the master branch

Guidelines

  • Write or update tests for any code changes
  • Ensure all tests pass before submitting
  • Run npm run check (Biome) to verify code style
  • Keep pull requests focused on a single change
  • Write clear commit messages in present tense

Code of Conduct

Please read our Code of Conduct before contributing.

Questions?

Feel free to open an issue for any questions.