Metadata-Version: 2.1
Name: django-lint2
Version: 0.1
Summary: A linter work with Django.
Home-page: https://github.com/t-hiroyoshi/django-lint2
Author: Hiroyoshi Takahashi
Author-email: t.hiroyoshi209@gmail.com
License: MIT License
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
License-File: LICENSE

# django-lint2 ✅

Lint2 is a linter work with Django.

## Requirements

Python 3+
Django
Flake8

## Installation

Install using pip!

```sh
pip install flake8 django-lint2
```

Add 'lint2' to your INSTALLED_APPS setting.

```py
INSTALLED_APPS = (
  ...,
  'lint2',
)
```

## Settings

Add options of flake8 to your settings.

See flake8 documents (http://flake8.pycqa.org/en/latest/user/configuration.html).

```py
LINT2 = {
  'max_line_length': 120,
}
```
