Pylint Feature

Lint your python code with pylint.

This feature may be outdated.

Usage

To use the Pylint Feature, make sure your Projectfile contains the following:

from medikit import require

pylint = require('pylint')

The pylint handle is a Config instance, and can be used to customize the feature.

Implementation

class medikit.feature.pylint.PylintFeature(dispatcher)[source]
on_make_generate(event)[source]

Listens to medikit.feature.make.on_generate event (priority: -20)

on_python_generate(event)[source]

Listens to medikit.feature.python.on_generate event (priority: 0)

requires = {'python'}