10 lines
105 B
YAML
10 lines
105 B
YAML
|
language: python
|
||
|
python:
|
||
|
- "2.7"
|
||
|
|
||
|
install:
|
||
|
- pip install pep8
|
||
|
|
||
|
script:
|
||
|
- pep8 --ignore=E402,E501 .
|