diff options
| author | Teddy Wing | 2015-09-25 01:02:27 -0400 | 
|---|---|---|
| committer | Teddy Wing | 2015-09-25 01:02:27 -0400 | 
| commit | efa1909b2fa955e5170eecda8d1d42598c817f07 (patch) | |
| tree | faaecc30b46a4afde486294497a3bd708711e633 /t/test.py | |
| parent | f6bb0d359c7c46eb41a3d760a85f2cc2aad3a79d (diff) | |
| download | git-hook-pre-commit-python-javascript-syntax-linter-efa1909b2fa955e5170eecda8d1d42598c817f07.tar.bz2 | |
Create 'pre-commit', add Python tests
* Create our 'pre-commit' hook script that runs flake8 on Python files in
  the staging area.
* Update test setup to create a git repository for testing.
* Add a test for the Python linter to confirm that it produces the
  correct output when trying to commit and that it only checks files in
  the staging index.
Diffstat (limited to 't/test.py')
| -rw-r--r-- | t/test.py | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/t/test.py b/t/test.py new file mode 100644 index 0000000..2878abd --- /dev/null +++ b/t/test.py @@ -0,0 +1,5 @@ +import datetime + +'this is a long that is longer than 79 characters, or it will be whenever this sentence finishes' + +missing_spaces_around_operator=0 | 
