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 | |
# Utility to re-name symbols in any code file to snake_case. | |
# Originally made for Godot (gdscript) files to rename camelCase to snake_case | |
# across a project. | |
import re | |
import os | |
##### CONFIGURATION |