Noah
Noah
@zwilias I think you should open an issue like this: https://github.com/github/linguist/issues/4004 and discuss there. It might be a similar issue, in which case I would prefer us to maintain a...
I'm gonna put a temp fix in place.
@zwilias Okay so I made Elm.tmLanguage during this interim while figuring out what to do. It's pointing again to that old commit: https://github.com/elm-community/Elm.tmLanguage. Can you ask them to do a...
@feldman4, can you provide a reproducable example?
Well, to start with, _these names are not consistent to String.Extra_. Take a look at the converstion functions here: http://package.elm-lang.org/packages/elm-community/string-extra/1.4.0/String-Extra#toSentenceCase. These are the names which you would expect in Elm....
From Slack: As a general recommendation, please do not name things just because another language calls them something. `camelize` is not a name I would expect to exist in any...
I don't want to dictate the names -- if @jaapz thinks the existing names are worth keeping, then I'd like to hear them out first before doing it. :smile:
@jaapz This is less of an issue in Elm, we can do `elm-package diff elm-community/string-extra 3.0.0 4.0.0`, and it will tell you exactly what changed. If they want to keep...
@jaapz, any code where this is valid is messy: ```elm alwaysTrue someText = let asCamel = toCamelCase someText asCamelToo = camelize someText in asCamel == asCamelToo ``` This is not...
Yes, that's reasonable.