-
Notifications
You must be signed in to change notification settings - Fork 4
/
.goarkitect.yaml
44 lines (44 loc) · 1.03 KB
/
.goarkitect.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
rules:
- name: mandatory files should exist
kind: file
matcher:
kind: "set"
filePaths:
- .envrc.dist
- .goarkitect.yaml
- .tool-versions.dist
- go.mod
- go.sum
- main.go
- README.md
musts:
- kind: exist
because: "they are mandatory for the project to work"
- name: all files in "cmd/" folder are go files
kind: file
matcher:
kind: all
thats:
- kind: are_in_folder
folder: ./cmd
recursive: false
excepts:
- kind: this
filePath: .DS_Store
musts:
- kind: end_with
suffix: .go
because: "only go files are allowed by the project layout"
- name: some dev files and folders are git ignored
kind: file
matcher:
kind: set
filePaths:
- .envrc
- .idea
- .tool-versions
- .vscode
musts:
- kind: be_gitignored
because: "every developer should be able to choose what behaviors and configurations run on their machine"