1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
pylint-celery
=============
[](https://travis-ci.org/landscapeio/pylint-celery)
[](https://landscape.io/github/landscapeio/pylint-celery)
[](https://coveralls.io/r/landscapeio/pylint-celery)
[](https://crate.io/packages/pylint-celery)
[](https://crate.io/packages/pylint-celery)
# About
`pylint-celery` is a [Pylint](http://pylint.org) plugin for improving code analysis for when analysing code using [Celery](http://celeryproject.org). It is also used by the [Prospector](https://github.com/landscapeio/prospector) tool.
## Usage
#### Pylint
Ensure `pylint-celery` is installed and on your path (`pip install pylint-celery`), and then run pylint:
```
pylint --load-plugins pylint_celery [..other options..]
```
#### Prospector
Ensure `pylint-celery` is installed and on your path (`pip install pylint-celery`), and then run prospector:
```
prospector --uses celery [..other options..]
```
# Features
* Fixes the warning 'celery.task' is not callable
# License
`pylint-celery` is available under the GPLv2 license.
|