github.com/mutagen-io/mutagen@v0.18.0-rc1/pkg/filesystem/temporary.go (about)

     1  package filesystem
     2  
     3  const (
     4  	// TemporaryNamePrefix is the file name prefix used for all temporary files
     5  	// and directories created by Mutagen. Using this prefix guarantees that any
     6  	// such files will be ignored by filesystem watching and synchronization
     7  	// scans. It may be suffixed with additional elements if desired.
     8  	TemporaryNamePrefix = ".mutagen-temporary-"
     9  )