osmlab / to-fix-backend

The to-fix server
BSD 3-Clause "New" or "Revised" License
15 stars 13 forks source link

Naming of `helper` files #240

Open batpad opened 6 years ago

batpad commented 6 years ago

Some helpers are named in-hyphen-case and some areNamedInCamelCase. We should make this consistent. My general preference is to use hyphen-case for filenames and camelCase for variable names - so you'd do like const someName = require('some-name'); - I think this mostly stems from potential weird issues for file systems that are not case sensitive and wanting to stay clear of those issues by not introducing case sensitivity into filenames.

I'm ok with either way though, just as long as we're being consistent :-)