-
Notifications
You must be signed in to change notification settings - Fork 46
Description
Is your feature request related to a problem? Please describe.
Due to the dynamic nature of Stellaris modding, I'm always frustrated when mod authors aren't consistent with capitalization, or where the only difference between two files is the same line written in a different way. This can causes a lot of noise needlessly, especially when comparing large mods by different authors across multiple versions. Some examples from my latest merge:
FROM <> from
ROOT <> root
host_has_dlc = "NAME" <> has_NAME = yes
NOT = { single_line } <> single_line = no
etc.
Describe the solution you'd like
It'd be great if I could write some ignore rules to filter conflicts that only have specific (same-line) mismatches.
Perhaps even automatically apply them to the patch file? Not sure about that one thou.
Describe alternatives you've considered
I'll be happy with at least an "Ignore capitalization mismatches" option.
Additional context
I'm not a programmer, so my apologies in case I've missed something obvious.