{"id":13595767,"url":"https://github.com/andreoliwa/nitpick","last_synced_at":"2025-05-14T20:11:02.860Z","repository":{"id":37768240,"uuid":"126496135","full_name":"andreoliwa/nitpick","owner":"andreoliwa","description":"Enforce the same settings on multiple projects","archived":false,"fork":false,"pushed_at":"2025-05-05T19:16:44.000Z","size":2781,"stargazers_count":402,"open_issues_count":54,"forks_count":24,"subscribers_count":4,"default_branch":"develop","last_synced_at":"2025-05-05T20:35:01.531Z","etag":null,"topics":["flake8","flake8-plugin","isort","linter","mypy","pylint","python","python3","styleguide"],"latest_commit_sha":null,"homepage":"https://nitpick.readthedocs.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andreoliwa.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.rst","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.rst","dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["andreoliwa"],"ko_fi":"andreoliwa","liberapay":"andreoliwa","custom":["https://www.paypal.me/andreoliwa","https://www.buymeacoffee.com/andreoliwa"]}},"created_at":"2018-03-23T14:25:24.000Z","updated_at":"2025-05-03T20:48:22.000Z","dependencies_parsed_at":"2023-02-16T13:46:08.840Z","dependency_job_id":"a6bcb332-ec6d-476c-b1e4-21a8594c767c","html_url":"https://github.com/andreoliwa/nitpick","commit_stats":{"total_commits":904,"total_committers":20,"mean_commits":45.2,"dds":"0.44690265486725667","last_synced_commit":"e7a511d96d56af841850ae1388a58b90947790bf"},"previous_names":["andreoliwa/flake8-nitpick"],"tags_count":53,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreoliwa%2Fnitpick","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreoliwa%2Fnitpick/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreoliwa%2Fnitpick/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreoliwa%2Fnitpick/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andreoliwa","download_url":"https://codeload.github.com/andreoliwa/nitpick/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254219374,"owners_count":22034397,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flake8","flake8-plugin","isort","linter","mypy","pylint","python","python3","styleguide"],"created_at":"2024-08-01T16:01:57.255Z","updated_at":"2025-05-14T20:11:02.824Z","avatar_url":"https://github.com/andreoliwa.png","language":"Python","readme":"Nitpick\n=======\n\n|PyPI|\n|Supported Python versions|\n|GitHub Actions Python Workflow|\n|Documentation Status|\n|Coveralls|\n|Maintainability|\n|Test Coverage|\n|pre-commit|\n|pre-commit.ci status|\n|Project License|\n|Code style: black|\n|Renovate|\n|semantic-release|\n|FOSSA Status|\n\nCommand-line tool and `flake8 \u003chttps://github.com/PyCQA/flake8\u003e`_\nplugin to enforce the same settings across multiple language-independent\nprojects.\n\nUseful if you maintain multiple projects and are tired of\ncopying/pasting the same INI/TOML/YAML/JSON keys and values over and\nover, in all of them.\n\nThe CLI now has a ``nitpick fix`` command that modifies configuration\nfiles directly (pretty much like\n`black \u003chttps://github.com/psf/black\u003e`_ and\n`isort \u003chttps://github.com/PyCQA/isort\u003e`_ do with Python files).\nSee the `CLI docs for more\ninfo \u003chttps://nitpick.rtfd.io/en/latest/cli.html\u003e`_.\n\nMany more features are planned for the future, check `the\nroadmap \u003chttps://github.com/andreoliwa/nitpick/projects/1\u003e`_.\n\nThe style file\n--------------\n\nA \"Nitpick code style\" is a `TOML \u003chttps://github.com/toml-lang/toml\u003e`_\nfile with the settings that should be present in config files from other\ntools.\n\nExample of a style:\n\n.. code-block:: toml\n\n    [\"pyproject.toml\".tool.black]\n    line-length = 120\n\n    [\"pyproject.toml\".tool.poetry.dev-dependencies]\n    pylint = \"*\"\n\n    [\"setup.cfg\".flake8]\n    ignore = \"D107,D202,D203,D401\"\n    max-line-length = 120\n    inline-quotes = \"double\"\n\n    [\"setup.cfg\".isort]\n    line_length = 120\n    multi_line_output = 3\n    include_trailing_comma = true\n    force_grid_wrap = 0\n    combine_as_imports = true\n\nThis style will assert that:\n\n-  ... `black \u003chttps://github.com/psf/black\u003e`_,\n   `isort \u003chttps://github.com/PyCQA/isort\u003e`_ and\n   `flake8 \u003chttps://github.com/PyCQA/flake8\u003e`_ have a line length of\n   120;\n-  ... `flake8 \u003chttps://github.com/PyCQA/flake8\u003e`_ and\n   `isort \u003chttps://github.com/PyCQA/isort\u003e`_ are configured as above in\n   ``setup.cfg``;\n-  ... `Pylint \u003chttps://www.pylint.org\u003e`__ is present as a\n   `Poetry \u003chttps://github.com/python-poetry/poetry\u003e`_ dev dependency\n   in ``pyproject.toml``.\n\nSupported file types\n--------------------\n\nThese are the file types currently handled by Nitpick.\n\n-  Some files are only being checked and have to be modified manually;\n-  Some files can already be fixed automatically (with the\n   ``nitpick fix`` command);\n-  Others are still under construction; the ticket numbers are shown in\n   the table (upvote the ticket with 👍🏻 if you would like to prioritise\n   development).\n\nImplemented\n~~~~~~~~~~~\n\n.. auto-generated-start-implemented\n.. list-table::\n   :header-rows: 1\n\n   * - File type\n     - ``nitpick check``\n     - ``nitpick fix``\n   * - `Any INI file \u003chttps://nitpick.rtfd.io/en/latest/plugins.html#ini-files\u003e`_\n     - ✅\n     - ✅\n   * - `Any JSON file \u003chttps://nitpick.rtfd.io/en/latest/plugins.html#json-files\u003e`_\n     - ✅\n     - ✅\n   * - `Any plain text file \u003chttps://nitpick.rtfd.io/en/latest/plugins.html#text-files\u003e`_\n     - ✅\n     - ❌\n   * - `Any TOML file \u003chttps://nitpick.rtfd.io/en/latest/plugins.html#toml-files\u003e`_\n     - ✅\n     - ✅\n   * - `Any YAML file \u003chttps://nitpick.rtfd.io/en/latest/plugins.html#yaml-files\u003e`_\n     - ✅\n     - ✅\n   * - `.editorconfig \u003chttps://nitpick.rtfd.io/en/latest/library.html#any\u003e`_\n     - ✅\n     - ✅\n   * - `.pylintrc \u003chttps://nitpick.rtfd.io/en/latest/plugins.html#ini-files\u003e`_\n     - ✅\n     - ✅\n   * - `setup.cfg \u003chttps://nitpick.rtfd.io/en/latest/plugins.html#ini-files\u003e`_\n     - ✅\n     - ✅\n.. auto-generated-end-implemented\n\nPlanned\n~~~~~~~\n\n.. auto-generated-start-planned\n.. list-table::\n   :header-rows: 1\n\n   * - File type\n     - ``nitpick check``\n     - ``nitpick fix``\n   * - Any Markdown file\n     - `#280 \u003chttps://github.com/andreoliwa/nitpick/issues/280\u003e`_ 🚧\n     - ❓\n   * - Any Terraform file\n     - `#318 \u003chttps://github.com/andreoliwa/nitpick/issues/318\u003e`_ 🚧\n     - ❓\n   * - Dockerfile\n     - `#272 \u003chttps://github.com/andreoliwa/nitpick/issues/272\u003e`_ 🚧\n     - `#272 \u003chttps://github.com/andreoliwa/nitpick/issues/272\u003e`_ 🚧\n   * - .dockerignore\n     - `#8 \u003chttps://github.com/andreoliwa/nitpick/issues/8\u003e`_ 🚧\n     - `#8 \u003chttps://github.com/andreoliwa/nitpick/issues/8\u003e`_ 🚧\n   * - .gitignore\n     - `#8 \u003chttps://github.com/andreoliwa/nitpick/issues/8\u003e`_ 🚧\n     - `#8 \u003chttps://github.com/andreoliwa/nitpick/issues/8\u003e`_ 🚧\n   * - Jenkinsfile\n     - `#278 \u003chttps://github.com/andreoliwa/nitpick/issues/278\u003e`_ 🚧\n     - ❓\n   * - Makefile\n     - `#277 \u003chttps://github.com/andreoliwa/nitpick/issues/277\u003e`_ 🚧\n     - ❓\n.. auto-generated-end-planned\n\nStyle Library (Presets)\n-----------------------\n\nNitpick has a builtin library of style presets, shipped as `Python resources \u003chttps://docs.python.org/3/library/importlib.html#module-importlib.resources\u003e`_.\n\nThis library contains building blocks for your your custom style.\nJust choose styles from the table below and create your own style, like LEGO.\n\nRead how to:\n\n- `...add multiple styles to the configuration file \u003chttps://nitpick.readthedocs.io/en/latest/configuration.html#multiple-styles\u003e`_;\n- `...include styles inside a style \u003chttps://nitpick.readthedocs.io/en/latest/nitpick_section.html#nitpick-styles\u003e`_.\n\n.. auto-generated-start-style-library\n\nany\n~~~\n\n.. list-table::\n   :header-rows: 1\n\n   * - Style URL\n     - Description\n   * - `py://nitpick/resources/any/codeclimate \u003csrc/nitpick/resources/any/codeclimate.toml\u003e`_\n     - `CodeClimate \u003chttps://codeclimate.com/\u003e`_\n   * - `py://nitpick/resources/any/commitizen \u003csrc/nitpick/resources/any/commitizen.toml\u003e`_\n     - `Commitizen (Python) \u003chttps://github.com/commitizen-tools/commitizen\u003e`_\n   * - `py://nitpick/resources/any/commitlint \u003csrc/nitpick/resources/any/commitlint.toml\u003e`_\n     - `commitlint \u003chttps://github.com/conventional-changelog/commitlint\u003e`_\n   * - `py://nitpick/resources/any/editorconfig \u003csrc/nitpick/resources/any/editorconfig.toml\u003e`_\n     - `EditorConfig \u003chttps://editorconfig.org/\u003e`_\n   * - `py://nitpick/resources/any/git-legal \u003csrc/nitpick/resources/any/git-legal.toml\u003e`_\n     - `Git.legal - CodeClimate Community Edition \u003chttps://github.com/kmewhort/git.legal-codeclimate\u003e`_\n   * - `py://nitpick/resources/any/pre-commit-hooks \u003csrc/nitpick/resources/any/pre-commit-hooks.toml\u003e`_\n     - `pre-commit hooks for any project \u003chttps://github.com/pre-commit/pre-commit-hooks\u003e`_\n   * - `py://nitpick/resources/any/prettier \u003csrc/nitpick/resources/any/prettier.toml\u003e`_\n     - `Prettier \u003chttps://github.com/prettier/prettier\u003e`_\n\njavascript\n~~~~~~~~~~\n\n.. list-table::\n   :header-rows: 1\n\n   * - Style URL\n     - Description\n   * - `py://nitpick/resources/javascript/package-json \u003csrc/nitpick/resources/javascript/package-json.toml\u003e`_\n     - `package.json \u003chttps://github.com/yarnpkg/website/blob/master/lang/en/docs/package-json.md\u003e`_\n\nkotlin\n~~~~~~\n\n.. list-table::\n   :header-rows: 1\n\n   * - Style URL\n     - Description\n   * - `py://nitpick/resources/kotlin/ktlint \u003csrc/nitpick/resources/kotlin/ktlint.toml\u003e`_\n     - `ktlint \u003chttps://github.com/pinterest/ktlint\u003e`_\n\nmarkdown\n~~~~~~~~\n\n.. list-table::\n   :header-rows: 1\n\n   * - Style URL\n     - Description\n   * - `py://nitpick/resources/markdown/markdownlint \u003csrc/nitpick/resources/markdown/markdownlint.toml\u003e`_\n     - `Markdown lint \u003chttps://github.com/markdownlint/markdownlint\u003e`_\n\npresets\n~~~~~~~\n\n.. list-table::\n   :header-rows: 1\n\n   * - Style URL\n     - Description\n   * - `py://nitpick/resources/presets/nitpick \u003csrc/nitpick/resources/presets/nitpick.toml\u003e`_\n     - `Default style file for Nitpick \u003chttps://nitpick.rtfd.io/\u003e`_\n\nproto\n~~~~~\n\n.. list-table::\n   :header-rows: 1\n\n   * - Style URL\n     - Description\n   * - `py://nitpick/resources/proto/protolint \u003csrc/nitpick/resources/proto/protolint.toml\u003e`_\n     - `protolint (Protobuf linter) \u003chttps://github.com/yoheimuta/protolint\u003e`_\n\npython\n~~~~~~\n\n.. list-table::\n   :header-rows: 1\n\n   * - Style URL\n     - Description\n   * - `py://nitpick/resources/python/310 \u003csrc/nitpick/resources/python/310.toml\u003e`_\n     - Python 3.10\n   * - `py://nitpick/resources/python/311 \u003csrc/nitpick/resources/python/311.toml\u003e`_\n     - Python 3.11\n   * - `py://nitpick/resources/python/312 \u003csrc/nitpick/resources/python/312.toml\u003e`_\n     - Python 3.12\n   * - `py://nitpick/resources/python/38 \u003csrc/nitpick/resources/python/38.toml\u003e`_\n     - Python 3.8\n   * - `py://nitpick/resources/python/39 \u003csrc/nitpick/resources/python/39.toml\u003e`_\n     - Python 3.9\n   * - `py://nitpick/resources/python/absent \u003csrc/nitpick/resources/python/absent.toml\u003e`_\n     - Files that should not exist\n   * - `py://nitpick/resources/python/autoflake \u003csrc/nitpick/resources/python/autoflake.toml\u003e`_\n     - `autoflake \u003chttps://github.com/myint/autoflake\u003e`_\n   * - `py://nitpick/resources/python/bandit \u003csrc/nitpick/resources/python/bandit.toml\u003e`_\n     - `Bandit \u003chttps://github.com/PyCQA/bandit\u003e`_\n   * - `py://nitpick/resources/python/black \u003csrc/nitpick/resources/python/black.toml\u003e`_\n     - `Black \u003chttps://github.com/psf/black\u003e`_\n   * - `py://nitpick/resources/python/flake8 \u003csrc/nitpick/resources/python/flake8.toml\u003e`_\n     - `Flake8 \u003chttps://github.com/PyCQA/flake8\u003e`_\n   * - `py://nitpick/resources/python/github-workflow \u003csrc/nitpick/resources/python/github-workflow.toml\u003e`_\n     - `GitHub Workflow for Python \u003chttps://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions\u003e`_\n   * - `py://nitpick/resources/python/ipython \u003csrc/nitpick/resources/python/ipython.toml\u003e`_\n     - `IPython \u003chttps://github.com/ipython/ipython\u003e`_\n   * - `py://nitpick/resources/python/isort \u003csrc/nitpick/resources/python/isort.toml\u003e`_\n     - `isort \u003chttps://github.com/PyCQA/isort\u003e`_\n   * - `py://nitpick/resources/python/mypy \u003csrc/nitpick/resources/python/mypy.toml\u003e`_\n     - `Mypy \u003chttps://github.com/python/mypy\u003e`_\n   * - `py://nitpick/resources/python/poetry-editable \u003csrc/nitpick/resources/python/poetry-editable.toml\u003e`_\n     - `Poetry (editable projects; PEP 600 support) \u003chttps://github.com/python-poetry/poetry\u003e`_\n   * - `py://nitpick/resources/python/poetry-venv \u003csrc/nitpick/resources/python/poetry-venv.toml\u003e`_\n     - `Poetry (virtualenv in project) \u003chttps://github.com/python-poetry/poetry\u003e`_\n   * - `py://nitpick/resources/python/poetry \u003csrc/nitpick/resources/python/poetry.toml\u003e`_\n     - `Poetry \u003chttps://github.com/python-poetry/poetry\u003e`_\n   * - `py://nitpick/resources/python/pre-commit-hooks \u003csrc/nitpick/resources/python/pre-commit-hooks.toml\u003e`_\n     - `pre-commit hooks for Python projects \u003chttps://pre-commit.com/hooks\u003e`_\n   * - `py://nitpick/resources/python/pylint \u003csrc/nitpick/resources/python/pylint.toml\u003e`_\n     - `Pylint \u003chttps://github.com/PyCQA/pylint\u003e`_\n   * - `py://nitpick/resources/python/radon \u003csrc/nitpick/resources/python/radon.toml\u003e`_\n     - `Radon \u003chttps://github.com/rubik/radon\u003e`_\n   * - `py://nitpick/resources/python/readthedocs \u003csrc/nitpick/resources/python/readthedocs.toml\u003e`_\n     - `Read the Docs \u003chttps://github.com/readthedocs/readthedocs.org\u003e`_\n   * - `py://nitpick/resources/python/sonar-python \u003csrc/nitpick/resources/python/sonar-python.toml\u003e`_\n     - `SonarQube Python plugin \u003chttps://github.com/SonarSource/sonar-python\u003e`_\n   * - `py://nitpick/resources/python/tox \u003csrc/nitpick/resources/python/tox.toml\u003e`_\n     - `tox \u003chttps://github.com/tox-dev/tox\u003e`_\n\nshell\n~~~~~\n\n.. list-table::\n   :header-rows: 1\n\n   * - Style URL\n     - Description\n   * - `py://nitpick/resources/shell/bashate \u003csrc/nitpick/resources/shell/bashate.toml\u003e`_\n     - `bashate (code style for Bash) \u003chttps://github.com/openstack/bashate\u003e`_\n   * - `py://nitpick/resources/shell/shellcheck \u003csrc/nitpick/resources/shell/shellcheck.toml\u003e`_\n     - `ShellCheck (static analysis for shell scripts) \u003chttps://github.com/koalaman/shellcheck\u003e`_\n   * - `py://nitpick/resources/shell/shfmt \u003csrc/nitpick/resources/shell/shfmt.toml\u003e`_\n     - `shfmt (shell script formatter) \u003chttps://github.com/mvdan/sh\u003e`_\n\ntoml\n~~~~\n\n.. list-table::\n   :header-rows: 1\n\n   * - Style URL\n     - Description\n   * - `py://nitpick/resources/toml/toml-sort \u003csrc/nitpick/resources/toml/toml-sort.toml\u003e`_\n     - `TOML sort \u003chttps://github.com/pappasam/toml-sort\u003e`_\n.. auto-generated-end-style-library\n\nQuickstart\n----------\n\nInstall\n~~~~~~~\n\nInstall in an isolated global environment with\n`pipx \u003chttps://github.com/pipxproject/pipx\u003e`_::\n\n    # Latest PyPI release\n    pipx install nitpick\n\n    # Development branch from GitHub\n    pipx install git+https://github.com/andreoliwa/nitpick\n\nOn macOS/Linux, install with\n`Homebrew \u003chttps://github.com/Homebrew/brew\u003e`_::\n\n    # Latest PyPI release\n    brew install andreoliwa/formulae/nitpick\n\n    # Development branch from GitHub\n    brew install andreoliwa/formulae/nitpick --HEAD\n\nOn Arch Linux, install with yay::\n\n    yay -Syu nitpick\n\nAdd to your project with\n`Poetry \u003chttps://github.com/python-poetry/poetry\u003e`_::\n\n    poetry add --dev nitpick\n\nOr install it with pip::\n\n    pip install -U nitpick\n\nRun\n~~~\n\nNitpick_ will fail if no style is explicitly configured.\nRun this command to download and use the opinionated `default style file \u003cnitpick-style.toml\u003e`_:\n\n    nitpick init\n\nYou can use it as a template to `configure-your-own-style`_.\n\nTo fix and modify your files directly::\n\n    nitpick fix\n\nTo check for errors only::\n\n    nitpick check\n\nNitpick is also a flake8_ plugin, so you can run this on a project with at least one Python (``.py``) file::\n\n    flake8 .\n\nRun as a pre-commit hook\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf you use `pre-commit \u003chttps://pre-commit.com/\u003e`_ on your project, add\nthis to the ``.pre-commit-config.yaml`` in your repository::\n\n    repos:\n      - repo: https://github.com/andreoliwa/nitpick\n        rev: v0.35.0\n        hooks:\n          - id: nitpick\n\nThere are 3 available hook IDs:\n\n- ``nitpick`` and ``nitpick-fix`` both run the ``nitpick fix`` command;\n- ``nitpick-check`` runs ``nitpick check``.\n\nIf you want to run Nitpick as a flake8 plugin instead::\n\n    repos:\n      - repo: https://github.com/PyCQA/flake8\n        rev: 4.0.1\n        hooks:\n          - id: flake8\n            additional_dependencies: [nitpick]\n\nRun as a MegaLinter plugin\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf you use `MegaLinter \u003chttps://megalinter.github.io/\u003e`_ you can run Nitpick as a plugin. Add the following two entries to your ``.mega-linter.yml`` configuration file:\n\n.. code-block:: yaml\n\n    PLUGINS:\n      - https://raw.githubusercontent.com/andreoliwa/nitpick/v0.35.0/mega-linter-plugin-nitpick/nitpick.megalinter-descriptor.yml\n    ENABLE_LINTERS:\n      - NITPICK\n\n\nMore information\n----------------\n\nNitpick is being used by projects such as:\n\n-  `wemake-services/wemake-python-styleguide \u003chttps://github.com/wemake-services/wemake-python-styleguide\u003e`_\n-  `dry-python/returns \u003chttps://github.com/dry-python/returns\u003e`_\n-  `sobolevn/django-split-settings \u003chttps://github.com/sobolevn/django-split-settings\u003e`_\n-  `catalyst-team/catalyst \u003chttps://github.com/catalyst-team/catalyst\u003e`_\n-  `alan-turing-institute/AutSPACEs \u003chttps://github.com/alan-turing-institute/AutSPACEs\u003e`_\n-  `pytest-dev/pytest-mimesis \u003chttps://github.com/pytest-dev/pytest-mimesis\u003e`_\n\nFor more details on styles and which configuration files are currently\nsupported, `see the full documentation \u003chttps://nitpick.rtfd.io/\u003e`_.\n\n.. |PyPI| image:: https://img.shields.io/pypi/v/nitpick.svg\n   :target: https://pypi.org/project/nitpick\n.. |GitHub Actions Python Workflow| image:: https://github.com/andreoliwa/nitpick/workflows/Python/badge.svg\n.. |Documentation Status| image:: https://readthedocs.org/projects/nitpick/badge/?version=latest\n   :target: https://nitpick.rtfd.io/en/latest/?badge=latest\n.. |Coveralls| image:: https://coveralls.io/repos/github/andreoliwa/nitpick/badge.svg\n   :target: https://coveralls.io/github/andreoliwa/nitpick\n.. |Maintainability| image:: https://api.codeclimate.com/v1/badges/61e0cdc48e24e76a0460/maintainability\n   :target: https://codeclimate.com/github/andreoliwa/nitpick\n.. |Test Coverage| image:: https://api.codeclimate.com/v1/badges/61e0cdc48e24e76a0460/test_coverage\n   :target: https://codeclimate.com/github/andreoliwa/nitpick\n.. |Supported Python versions| image:: https://img.shields.io/pypi/pyversions/nitpick.svg\n   :target: https://pypi.org/project/nitpick/\n.. |Project License| image:: https://img.shields.io/pypi/l/nitpick.svg\n   :target: https://pypi.org/project/nitpick/\n.. |Code style: black| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n   :target: https://github.com/psf/black\n.. |Renovate| image:: https://img.shields.io/badge/renovate-enabled-brightgreen.svg\n   :target: https://renovatebot.com/\n.. |semantic-release| image:: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg\n   :target: https://github.com/semantic-release/semantic-release\n.. |pre-commit| image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit\u0026logoColor=white\n   :target: https://github.com/pre-commit/pre-commit\n   :alt: pre-commit\n.. |pre-commit.ci status| image:: https://results.pre-commit.ci/badge/github/andreoliwa/nitpick/develop.svg\n   :target: https://results.pre-commit.ci/latest/github/andreoliwa/nitpick/develop\n.. |FOSSA Status| image:: https://app.fossa.com/api/projects/git%2Bgithub.com%2Fandreoliwa%2Fnitpick.svg?type=shield\n   :target: https://app.fossa.com/projects/git%2Bgithub.com%2Fandreoliwa%2Fnitpick?ref=badge_shield\n\nContributing\n------------\n\nYour help is very much appreciated.\n\nThere are many possibilities for new features in this project, and not enough time or hands to work on them.\n\nIf you want to contribute with the project, set up your development environment following the steps on the `contribution guidelines \u003chttps://nitpick.rtfd.io/en/latest/contributing.html\u003e`_ and send your pull request.\n","funding_links":["https://github.com/sponsors/andreoliwa","https://ko-fi.com/andreoliwa","https://liberapay.com/andreoliwa","https://www.paypal.me/andreoliwa","https://www.buymeacoffee.com/andreoliwa"],"categories":["Python","Fix aggregators","Linters \u0026 Style Checkers","Tools"],"sub_categories":["Debian"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreoliwa%2Fnitpick","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandreoliwa%2Fnitpick","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreoliwa%2Fnitpick/lists"}