mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-03-30 18:26:53 +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
|
||||
pyyaml
|
||||
pyflakes
|
||||
simplejson
|
||||
|
||||
# Testing requirements
|
||||
coverage
|
||||
ipdb
|
||||
mock
|
||||
pyflakes
|
||||
pytest
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -7,6 +7,7 @@ setup(
|
|||
packages=find_packages('.', exclude=('tests*', 'testing*')),
|
||||
install_requires=[
|
||||
'argparse',
|
||||
'pyflakes',
|
||||
'simplejson',
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue