RealFaviconGenerator/realfavicongenerator

Use uniform spacing and (LF-only) line endings

Closed this issue · 9 comments

dandv commented

RFG uses a mix of spaces, tabs, LF, and CR+LF line separators:

  • browser.config.xml is CRL+LF-separated. Arguably this is because it targets Windows, but the file likely won't be edited on Windows, and there are other text files in the package that Notepad will display in one lines. The XML uses spaces for indentation - great.
  • manifest.json uses LF-only line separators, but tabs instead of spaces for indentation
  • safari-pinned-tab uses LF line endings and wraps at 74 chars/line.

Thanks. I never realized this.

So:

  • manifest.json looks okay. This is what json_encode and JSON_PRETTY_PRINT generate so I rather stick to it.
  • browserconfig.xml: let's switch to LF-only and tabs, to match manifest.json. Plus it's (a little bit) more compact.
  • Safari pinned tabs SVG icon: SVGO will decide, see #261.

Fixed in branch package_v0_14

Deployed a minute ago.

@phbernard: nitpicking but manifest.json does not have the end of file line break like the browserconfig.xml has. :)

Hex editor speaking :) Both manifest.json and browserconfig.xml have UNIX-style (ie. 0x0A) end of line.

Do you observe something else?

I've just tested it again. I clearly see 0x0a everywhere (and not 0x0d0a):

JSON

image

XML

image

Could you tell me how you check the end of line?

It's obvious for me just by opening the files...

See the attached images.

browserconfig

manifest

As you can see manifest.json doesn't have the end of file line break.

Oh, okay! The final line break at the end of the file! Sorry, I misread your first message, I thought you were talking about all ends of line.

I consider this as another issue, although it would have been good to fix everything at once. I just entered #304