You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
611 B

  1. # Contributing
  2. Contributions are welcomed. Open a pull-request or an issue.
  3. ## Code of conduct
  4. This project adheres to the [Open Code of Conduct][code-of-conduct]. By participating, you are expected to honor this code.
  5. [code-of-conduct]: https://github.com/spotify/code-of-conduct/blob/master/code-of-conduct.md
  6. ## Code Style
  7. This project prefers, but does not strictly enforce, a specific source code style. The style is described in `.clang-format` and `.clang-tidy`.
  8. To generate a clang-tidy report:
  9. ```bash
  10. clang-tidy --extra-arg=-std=c++17 --config-file=.clang-tidy include/argparse/argparse.hpp
  11. ```