Adding a very simple projectionist config

This commit is contained in:
Gary Holtz 2022-09-12 10:26:51 -05:00
parent f96841dbbc
commit 68ce689449
No known key found for this signature in database
GPG Key ID: 0C3B92677CFEE92F
2 changed files with 13 additions and 0 deletions

3
.gitignore vendored
View File

@ -51,3 +51,6 @@ log.txt.glab-cli
# goreleaser struggled with this file being generated during the release build
cyclonedx-go-go.json
# projectionist.vim
.projections.json

10
.projections.json.example Normal file
View File

@ -0,0 +1,10 @@
{
"*.go": {
"alternate": "{}_test.go",
"type": "source"
},
"*_test.go": {
"alternate": "{}.go",
"type": "test"
}
}