-
Notifications
You must be signed in to change notification settings - Fork 1
Refactoring Week
Poobslag edited this page Jan 16, 2025
·
88 revisions
Refactoring week occurs every two months. It's good for code to have time to rest, where we can clean up technical debt.
- Rename files to use snake case universally, not just for script files.
- Add strong typing for arrays,
for name: String in names
- Prefer
:=
when the type is written on the same line as the assignment, otherwise prefer writing the type explicitly - Revise delinting rules for Godot 4 standards. Our delinting rules apply Godot 3 style in some cases such as pascal case scene file names.
- Enable warnings for missing types in the Godot editor.