문제

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)?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top