I assume by "projects" you mean packages. I understand that multiple word 
package names are sometimes needed, but Effective Go: package-names 
<https://golang.org/doc/effective_go.html#package-names> from the official 
go website recommends:

"By convention, packages are given lower case, single-word names; there 
should be no need for underscores or mixedCaps."

So avoid them when possible.

- Jake

On Wednesday, April 19, 2017 at 9:48:32 AM UTC-4, Tong Sun wrote:
>
> Hi, 
>
> What's the idiomatic way to name Go projects with multiple words? Would it 
> be, 
>
> - github.com/my-id/multiple-words, or
> - github.com/my-id/multiple_words, or even
> - github.com/my-id/does-not_care, or
> - github.com/my-id/InOneWord
>
> what's your preference and why? 
>
> Thanks
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to