aboutsummaryrefslogtreecommitdiff
path: root/scm.go
diff options
context:
space:
mode:
Diffstat (limited to 'scm.go')
-rw-r--r--scm.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/scm.go b/scm.go
index d94ee18..1353625 100644
--- a/scm.go
+++ b/scm.go
@@ -8,9 +8,10 @@ type sourceCodeManagement interface {
IsIgnored(path string) bool
}
-// dummySCM is a no scm. It always return false on IsIgnored.
-type dummySCM struct{}
+// noSCM is a type to indicate working directory without SCM.
+// It always return false on IsIgnored.
+type noSCM struct{}
-func (scm *dummySCM) IsIgnored(path string) bool {
+func (scm *noSCM) IsIgnored(path string) bool {
return false
}