Your repository has a [workflow](https://github.com/QuantumApplicationLab/quantum-inspired-algorithms/blob/main/.github/workflows/build.yml) which [lints](https://en.wikipedia.org/wiki/Lint_(software)) your code after every push and when creating a pull request. Linter workflow may fail if `description` or `keywords` field in [pyproject.toml](https://github.com/QuantumApplicationLab/quantum-inspired-algorithms/blob/main/pyproject.toml) is empty. Please update these fields. To validate your changes run: ```shell ruff . ``` Enabling [githook](https://git-scm.com/docs/githooks) will automatically lint your code in every commit. You can enable it by running the command below. ```shell git config --local core.hooksPath .githooks ```
Your repository has a workflow which lints your code after every push and when creating a pull request.
Linter workflow may fail if
descriptionorkeywordsfield in pyproject.toml is empty. Please update these fields. To validate your changes run:ruff .Enabling githook will automatically lint your code in every commit. You can enable it by running the command below.