mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-09 04:54:16 +00:00
Add the first hook
This commit is contained in:
parent
cd74dc150c
commit
5e713f8878
3 changed files with 9 additions and 2 deletions
7
manifest.yaml
Normal file
7
manifest.yaml
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
|
||||||
|
-
|
||||||
|
id: pyflakes
|
||||||
|
name: Pyflakes
|
||||||
|
description: This validator runs pyflakes.
|
||||||
|
entry: pyflakes
|
||||||
|
language: python
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
argparse
|
argparse
|
||||||
pyyaml
|
pyflakes
|
||||||
simplejson
|
simplejson
|
||||||
|
|
||||||
# Testing requirements
|
# Testing requirements
|
||||||
coverage
|
coverage
|
||||||
ipdb
|
ipdb
|
||||||
mock
|
mock
|
||||||
pyflakes
|
|
||||||
pytest
|
pytest
|
||||||
|
|
|
||||||
1
setup.py
1
setup.py
|
|
@ -7,6 +7,7 @@ setup(
|
||||||
packages=find_packages('.', exclude=('tests*', 'testing*')),
|
packages=find_packages('.', exclude=('tests*', 'testing*')),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'argparse',
|
'argparse',
|
||||||
|
'pyflakes',
|
||||||
'simplejson',
|
'simplejson',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue