Naming convention for groovy script files

2019-04-22 19:02发布

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

1条回答
等我变得足够好
2楼-- · 2019-04-22 20:06

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.

查看更多
登录 后发表回答