You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This adds pre-commit config which invokes sanity checks for the
following:
* Python Encoding Pragma
* Lines with trailing white space
* Merge conflict checks
* Empty new-line a the end of files.
* Remove debug statements
* Check for exceedingly large files.
* Check the Python AST (valid Python Code).
* Check byte order markers.
* Check file naming case conflicts.
* Check docstrings in modules, functions and classes.
* Check that executable files have appropriate shebang.
* Check for file links outside the repository.
* Check for mixed line endings (Windows vs Unix).
* Check that test files are named correctly.
* Check json file is valid format.
* Check json files are pretty printed.
* Check yaml file is valid format.
* Check yaml files are pretty printed.
* Check for private keys.
* Run Black.
* Remove tabs for spaces.
* Remove control line feeds (we like Unix).
Signed-off-by: David ML Brown Jr <[email protected]>
0 commit comments