Remove Style/NumericLiterals rules
This rule was forcing us to put an underscore on year value.
By removing this we fallback to default that has MinDigits: 5
, meaning that years will be left as YYYY but 10000 should be transformed to 10_000.
When applied this MR will breaks our CIs but fortunately this cop support --auto-correct
option