This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/python | |
| import os | |
| import sys | |
| path = sys.argv[1] | |
| def snake_to_camel(path): | |
| for root, dirs, files in os.walk(path): | |
| for file in files: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import sys | |
| import os | |
| import re | |
| precommit_check = sys.argv[1] | |
| def check_secret(secret_file): | |
| for root, dirs, files in os.walk(secret_file): |