invoke-plugin-for-pylint


Nameinvoke-plugin-for-pylint JSON
Version 4.0.0 PyPI version JSON
download
home_pageNone
SummaryPylint plugin which disables checks for proper integration with invoke
upload_time2024-10-09 05:20:32
maintainerNone
docs_urlNone
authorNone
requires_python<4,>=3.9
licenseApache-2.0
keywords pylint invoke plugin inv linter
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![REUSE status](https://api.reuse.software/badge/github.com/SAP/invoke-plugin-for-pylint)](https://api.reuse.software/info/github.com/SAP/invoke-plugin-for-pylint)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)
[![PyPI version](https://badge.fury.io/py/invoke-plugin-for-pylint.svg)](https://badge.fury.io/py/invoke-plugin-for-pylint)

# Invoke Plugin for Pylint
This is a plugin for pylint which disables certain checks when using invoke.

## Installation
`pip install invoke-plugin-for-pylint`, that's it.

## Usage
Add `invoke_plugin_for_pylint` to the list of pylint plugins.

## Disabled check

* unused-argument: Each invoke task needs a context argument even if not needed.
  Therefore this plugin will find all tasks and suppress all `unused-argument` errors when related to the context argument


## Configuration

If custom decorators for invoke tasks are used which wrap `invoke.task` the
`additional-invoke-task-decorators` option by checker `invoke-plugin-for-pylint` can be used.
It's a csv list of names which indicate an invoke task.

Please note, that the names must be full qualified and reflect the name of the final function.
For example, a decorator factory called "foo" in package "bar" which returns a function called
"_inner", will result in the name "bar.foo._inner".

Example for the pyproject.toml:

```toml
[tool.pylint.invoke-plugin-for-pylint]
additional-invoke-task-decorators = [
    "my_package.foo.make_task._inner",
    "my_package.foo.make_other_task",
]
```

## Build and Publish

This project uses `setuptools` as the dependency management and build tool.
To publish a new release, follow these steps:
* Update the version in the `pyproject.toml`
* Add an entry in the changelog
* Push a new tag like `vX.X.X` to trigger the release

## Support, Feedback, Contributing

This project is open to feature requests/suggestions, bug reports etc. via [GitHub issues](https://github.com/SAP/invoke-plugin-for-pylint/issues). Contribution and feedback are encouraged and always welcome. For more information about how to contribute, the project structure, as well as additional contribution information, see our [Contribution Guidelines](CONTRIBUTING.md).

## Code of Conduct

We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone. By participating in this project, you agree to abide by its [Code of Conduct](CODE_OF_CONDUCT.md) at all times.

## Licensing

Copyright 2024 SAP SE or an SAP affiliate company and invoke-plugin-for-pylint contributors. Please see our [LICENSE](LICENSE) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available [via the REUSE tool](https://api.reuse.software/info/github.com/SAP/invoke-plugin-for-pylint).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "invoke-plugin-for-pylint",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.9",
    "maintainer_email": null,
    "keywords": "pylint, invoke, plugin, inv, linter",
    "author": null,
    "author_email": "Kai Mueller <kai.mueller01@sap.com>",
    "download_url": "https://files.pythonhosted.org/packages/6c/1f/e179a69410c3219d92802cbd9aa4cddac8ca9f692f5841b33623ae10fac6/invoke_plugin_for_pylint-4.0.0.tar.gz",
    "platform": null,
    "description": "[![REUSE status](https://api.reuse.software/badge/github.com/SAP/invoke-plugin-for-pylint)](https://api.reuse.software/info/github.com/SAP/invoke-plugin-for-pylint)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)\n[![PyPI version](https://badge.fury.io/py/invoke-plugin-for-pylint.svg)](https://badge.fury.io/py/invoke-plugin-for-pylint)\n\n# Invoke Plugin for Pylint\nThis is a plugin for pylint which disables certain checks when using invoke.\n\n## Installation\n`pip install invoke-plugin-for-pylint`, that's it.\n\n## Usage\nAdd `invoke_plugin_for_pylint` to the list of pylint plugins.\n\n## Disabled check\n\n* unused-argument: Each invoke task needs a context argument even if not needed.\n  Therefore this plugin will find all tasks and suppress all `unused-argument` errors when related to the context argument\n\n\n## Configuration\n\nIf custom decorators for invoke tasks are used which wrap `invoke.task` the\n`additional-invoke-task-decorators` option by checker `invoke-plugin-for-pylint` can be used.\nIt's a csv list of names which indicate an invoke task.\n\nPlease note, that the names must be full qualified and reflect the name of the final function.\nFor example, a decorator factory called \"foo\" in package \"bar\" which returns a function called\n\"_inner\", will result in the name \"bar.foo._inner\".\n\nExample for the pyproject.toml:\n\n```toml\n[tool.pylint.invoke-plugin-for-pylint]\nadditional-invoke-task-decorators = [\n    \"my_package.foo.make_task._inner\",\n    \"my_package.foo.make_other_task\",\n]\n```\n\n## Build and Publish\n\nThis project uses `setuptools` as the dependency management and build tool.\nTo publish a new release, follow these steps:\n* Update the version in the `pyproject.toml`\n* Add an entry in the changelog\n* Push a new tag like `vX.X.X` to trigger the release\n\n## Support, Feedback, Contributing\n\nThis project is open to feature requests/suggestions, bug reports etc. via [GitHub issues](https://github.com/SAP/invoke-plugin-for-pylint/issues). Contribution and feedback are encouraged and always welcome. For more information about how to contribute, the project structure, as well as additional contribution information, see our [Contribution Guidelines](CONTRIBUTING.md).\n\n## Code of Conduct\n\nWe as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone. By participating in this project, you agree to abide by its [Code of Conduct](CODE_OF_CONDUCT.md) at all times.\n\n## Licensing\n\nCopyright 2024 SAP SE or an SAP affiliate company and invoke-plugin-for-pylint contributors. Please see our [LICENSE](LICENSE) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available [via the REUSE tool](https://api.reuse.software/info/github.com/SAP/invoke-plugin-for-pylint).\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Pylint plugin which disables checks for proper integration with invoke",
    "version": "4.0.0",
    "project_urls": {
        "Changelog": "https://github.com/SAP/invoke-plugin-for-pylint/blob/main/CHANGELOG.md",
        "Issue Tracker": "https://github.com/SAP/invoke-plugin-for-pylint/issues"
    },
    "split_keywords": [
        "pylint",
        " invoke",
        " plugin",
        " inv",
        " linter"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39e494e8589a785e4b4ac4d97a93c6b50341921a087e4d7557617e2be26e90b6",
                "md5": "7c3f5f83309c6a347ff48b08dbf0d3bc",
                "sha256": "a52abf3979eb1437438d069a9f8a56e86cfed93d17a308c3a274d010b794eefd"
            },
            "downloads": -1,
            "filename": "invoke_plugin_for_pylint-4.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7c3f5f83309c6a347ff48b08dbf0d3bc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4,>=3.9",
            "size": 8529,
            "upload_time": "2024-10-09T05:20:31",
            "upload_time_iso_8601": "2024-10-09T05:20:31.344391Z",
            "url": "https://files.pythonhosted.org/packages/39/e4/94e8589a785e4b4ac4d97a93c6b50341921a087e4d7557617e2be26e90b6/invoke_plugin_for_pylint-4.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c1fe179a69410c3219d92802cbd9aa4cddac8ca9f692f5841b33623ae10fac6",
                "md5": "de8ab5b102fc6f016439ad9a2a01c86c",
                "sha256": "126c144332b204b623d86b029e83315fa4b1edcda95e98114e7af799f11d9f46"
            },
            "downloads": -1,
            "filename": "invoke_plugin_for_pylint-4.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "de8ab5b102fc6f016439ad9a2a01c86c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.9",
            "size": 9356,
            "upload_time": "2024-10-09T05:20:32",
            "upload_time_iso_8601": "2024-10-09T05:20:32.941187Z",
            "url": "https://files.pythonhosted.org/packages/6c/1f/e179a69410c3219d92802cbd9aa4cddac8ca9f692f5841b33623ae10fac6/invoke_plugin_for_pylint-4.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-09 05:20:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SAP",
    "github_project": "invoke-plugin-for-pylint",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "invoke-plugin-for-pylint"
}
        
Elapsed time: 8.87412s