Metadata-Version: 2.1
Name: flake8_linenumber
Version: 0.1.12
Summary: flake8 plugin to limit line number in a module
Home-page: https://github.com/brabadu/flake8-linenumber
Author: Boryslav Larin
Author-email: brabadu@gmail.com
License: MIT
Classifier: Framework :: Flake8
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Description-Content-Type: text/markdown
License-File: LICENSE

flake8-linenumber
=================

Flake8 plugin to limit lines number in a module


Installation
------------

    $ pip install flake8-linenumber

Usage
-----

Add path to file and it's limit to your flake8 config (`.flake8` file by default)


```
linenumber =
    ./events.py=500
    ./handlers.py=1000
```
                        

Codes
-----
* ``L001`` Reports that logical line count has exceeded limit
