Question

Is there any convention regarding groovy script files naming?

Should I name the script file in camelcase form, like if it was a regular class (i.e. FooBar.groovy)?

Or will it be better to name it using small case letters and underscores (i.e. foo_bar.groovy)?

Était-ce utile?

La solution

I have seen suggestions that say groovy class files should be the camel case just like Java classes, but for groovy scripts, the recommendation was lower case names, at least the first letter. The idea is that you can very easily get an idea of what file is when looking in a directory list or Windows explorer, just by the case of the filename - so scripts starting with lower-case is a good clue.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top