We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 413cfe4 commit 571cc03Copy full SHA for 571cc03
src/qa/emitter/emitter.go
@@ -79,8 +79,14 @@ var starters = map[string]emitterStarter{
79
80
var defaultGlobs = map[string]string {
81
"rspec": "spec/**/*spec.rb",
82
+ "rspec-squashall": "spec/**/*spec.rb",
83
+ "rspec-pendantic": "spec/**/*spec.rb",
84
"minitest": "test/**/test*.rb",
85
+ "minitest-squashall": "test/**/test*.rb",
86
+ "minitest-pendantic": "test/**/test*.rb",
87
"test-unit": "test/**/test*.rb",
88
+ "test-unit-squashall": "test/**/test*.rb",
89
+ "test-unit-pendantic": "test/**/test*.rb",
90
}
91
92
func DefaultGlob(name string) string {
0 commit comments