This project is currently not actively maintained
A flake8 linter plug-in for validating that certain Python files comply with a user defined pattern.
Install
flake8-filename
from PyPI with pip:$ pip install flake8-filename
Configure a mark that you would like to validate:
$ cd project_root/ $ vi .flake8
[flake8]
filename_check1 = filter_regex=test_.+
filename_regex=test_[\w-]+$
Run flake8:
$ flake8 tests/
- It is highly recommended to use this plugin inside of a virtualenv
- A configuration is required by this plugin, if none is found the plugin will throw a N401 validation error for every file
All possible violation codes are documented in violation_codes
More example configurations can be found in configuration
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.