Make pyflakes less aggressive by ignoring all warning messages except:
- [X] Undefined variables
- [X] Unused variables
- [X] Undefined local variables
- pyflakes
Put `pyflakes-less` into your `$PATH`. If you installed `pyflakes` into your `virtualenv`, then you need to point the `python` executable to the one in your `virtualenv`, i.e.:
#!/usr/bin/env /home/wjiang/venv/core/bin/pythonCopy `git-hooks/pre-commit` to your `.git/hooks` directory.
To ignore errors, use `git commit -n`. For `magit` users, use `c -n c` to by-pass this check.