Just messing around with the exercises from the book "Functional Programming in C++" by Ivan Čukić. https://www.manning.com/books/functional-programming-in-c-plus-plus
The project uses submodules for some third-party dependencies, such as Catch2. To update the submodules:
git submodule update --initThis project uses the pre-commit tool to lint git commits before they are made. Install these as follows:
# Install the pre-commit tool
# It's also available through tools such as homebrew.
pip install pre-commit
# Install the pre-commit hooks to the project
cd <path-to-source-folder>
pre-commit install --install-hooks
# Install git commit linter to the project
pre-commit install --hook-type commit-msgYou can see a list of the checks that are performed by inspecting the
.pre-commit-config.yaml file.