So the coding conventions suggest to put all files...
# codingconventions
r
So the coding conventions suggest to put all files in the root package directly in the root folder of the application. I want to follow this, but IntelliJ makes it a bit cumbersome, because it doesn't seem to recognize that rule. When I create a new file for the package
my.root.package.subpackage
, the new file will get
package subpackage
at the start, because of course the IDE doesn't know about my root package. Right now I got it to work by adding the root package manually inside the new file template in the settings, but that seems way too hacky for me. Is there a better approach to get the desired behavior?
y
this will be fixed in the IDE
r
Good to know, thank you 🙂