mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
13 lines
356 B
Python
13 lines
356 B
Python
"""
|
|
Checks all source files (.py) against PEP8 coding style.
|
|
The following rules are ignored:
|
|
- W293 - blank lines contain whitespace
|
|
- E501 - line too long (82 characters)
|
|
|
|
Run this script before submitting a Pull-Request to check your code.
|
|
"""
|
|
|
|
import subprocess
|
|
|
|
subprocess.call(['pep8', '--exclude=migrations', '--ignore=W293,E501', 'InvenTree'])
|