Pro(ject) layout is a static analysis tool that allow you to lint the project structure of your go project.
Since Go does not enforce any real project structure, we wanted to have a static analysis tool, to help us to ensure projects are structured in a similar fashion.
module: "github.com/wimspaargaren/prolayout"
root:
- name: "cmd"
dirs:
- name: ".*"
files:
- "main.go"
- name: "internal"
- name: "pkg"
- name: "tests"
files:
- name: ".*_test.go"