You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There should be a rule that handles naming modules based on whether the parent directory is plural or singular.
The most notable example of this is Phoenix. If you look at how Phoenix structures controllers you can see that it follows a different naming convention than what is specified in the style guide.
For example, a controller at the following path my_app/controllers/home_controller.ex will be named MyApp.HomeController. According to the style guide, it should be named MyApp.Controllers.HomeController.
Given that Phoenix is probably the most prominent project in Elixirland I think it makes sense to create a rule to accommodate this style.
If a parent directory name is plural than the module author may choose to omit the parent directory in the module name. In this case, a singular form of the parent directory name must be appended to the file name. The module name will reflect the file name.
For the directory structure my_app/controllers/home_controller.ex the module name MyApp.HomeController is valid.
If the module author does not omit the parent directory than the current rules apply.
Let me know what you think!
The text was updated successfully, but these errors were encountered:
The example could be something like MyApp.XmlParser for my_app/parsers/xml_parser.ex.
Could we say more about when this rule can be applied?
It seems a good naming scheme when you want to group modules together that have the same "type" (e.g., Controller, Parser) and so the same suffix (_controller, _parser). In that case you can put them in a directory named after the plural of the type, but drop the directory name from the module name.
Are there any other packages besides Phoenix that use this naming and directory scheme? It would be helpful to document them here.
There should be a rule that handles naming modules based on whether the parent directory is plural or singular.
The most notable example of this is Phoenix. If you look at how Phoenix structures controllers you can see that it follows a different naming convention than what is specified in the style guide.
For example, a controller at the following path
my_app/controllers/home_controller.ex
will be namedMyApp.HomeController
. According to the style guide, it should be namedMyApp.Controllers.HomeController
.Given that Phoenix is probably the most prominent project in Elixirland I think it makes sense to create a rule to accommodate this style.
If a parent directory name is plural than the module author may choose to omit the parent directory in the module name. In this case, a singular form of the parent directory name must be appended to the file name. The module name will reflect the file name.
For the directory structure
my_app/controllers/home_controller.ex
the module nameMyApp.HomeController
is valid.If the module author does not omit the parent directory than the current rules apply.
Let me know what you think!
The text was updated successfully, but these errors were encountered: