Skip to content

Commit eda5730

Browse files
committed
Change regex ending with "/*" to end with "/"
1 parent caa6186 commit eda5730

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.vscode-template/settings.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
"search.exclude": {
99
"**/*.class": true,
1010
"**/*.hasTasty": true,
11-
"**/target/**": true,
12-
"scala2-library/{doc,docs,lib,META-INF,scripts,spec,test,tools}/*": true, // only allow scala-backend/src
11+
"**/target/": true,
12+
"scala2-library/{doc,docs,lib,META-INF,scripts,spec,test,tools}/": true, // only allow scala-backend/src
1313
"scala2-library/src/[abcefimprs]*": true, // only allow scala-backend/src/library
14-
"scala-backend/{doc,docs,lib,META-INF,scripts,spec,test,tools}/*": true, // only allow scala-backend/src
14+
"scala-backend/{doc,docs,lib,META-INF,scripts,spec,test,tools}/": true, // only allow scala-backend/src
1515
"scala-backend/src/[abefilmprs]*": true, // only allow scala-backend/src/compiler
16-
"scala-backend/src/scala/reflect/*": true,
16+
"scala-backend/src/scala/reflect/": true,
1717
"scala-backend/src/scala/tools/{ant,cmd,reflect,util}*": true,
1818
"scala-backend/src/scala/tools/nsc/*.scala": true,
1919
"scala-backend/src/scala/tools/nsc/[aijrstu]*": true // only allow scala-backend/src/scala/tools/nsc/backend

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,7 @@ object Build {
11481148
""".stripMargin)
11491149
}
11501150

1151-
// If contents .vscode do not exist yet, initialize them with the contents of .vscode-template/
1151+
// Copy default configuration from .vscode-template/ unless configuration files already exist in .vscode/
11521152
sbt.IO.copyDirectory(new File(".vscode-template/"), new File(".vscode/"), overwrite = false)
11531153

11541154
state

0 commit comments

Comments
 (0)