Ask the maintainers.
Coding style is a quite subjective discussion, and rules like maximum line length of 80 characters are fairly subjective - while general agreement should be that shorter lines are better to read, 80 might be too restrictive for some with today's screen sizes and IDE's.
Other rules can be ignored on purpose, too. For instance, a developer might consider global use of double quotes better for him and be willing to accept the "risk" of accidental interpolation and an extremely small increase on parsing time.
Many maintainers also don't like large coding style changes as they are boring to review and there is a chance that it might introduce errors. ForFor example, a string iscould be switched to single quote, buteven though it contained a deliberate interpolation and should have been using double quotes. MaintainersMaintainers prefer to do style cleanups while working on that actual code so they can verify that the style changes did notdon't introduce new bugs.