-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add terraform scope. Update test to use a table to verify known scopes
- Loading branch information
Suhas Vishwanath
committed
Feb 21, 2022
1 parent
0a7dc31
commit 80d51b1
Showing
2 changed files
with
43 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
package talismanrc | ||
|
||
var knownScopes = map[string][]string{ | ||
"node": {"yarn.lock", "package-lock.json", "node_modules/"}, | ||
"go": {"makefile", "go.mod", "go.sum", "Gopkg.toml", "Gopkg.lock", "glide.yaml", "glide.lock", "vendor/"}, | ||
"images": {"*.jpeg", "*.jpg", "*.png", "*.tiff", "*.bmp"}, | ||
"bazel": {"*.bzl"}, | ||
"node": {"yarn.lock", "package-lock.json", "node_modules/"}, | ||
"go": {"makefile", "go.mod", "go.sum", "Gopkg.toml", "Gopkg.lock", "glide.yaml", "glide.lock", "vendor/"}, | ||
"images": {"*.jpeg", "*.jpg", "*.png", "*.tiff", "*.bmp"}, | ||
"bazel": {"*.bzl"}, | ||
"terraform": {".terraform.lock.hcl"}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters