Skip to content

Commit

Permalink
Change regex ending with "/*" to end with "/"
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasstucki committed Jul 11, 2017
1 parent caa6186 commit eda5730
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .vscode-template/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"search.exclude": {
"**/*.class": true,
"**/*.hasTasty": true,
"**/target/**": true,
"scala2-library/{doc,docs,lib,META-INF,scripts,spec,test,tools}/*": true, // only allow scala-backend/src
"**/target/": true,
"scala2-library/{doc,docs,lib,META-INF,scripts,spec,test,tools}/": true, // only allow scala-backend/src
"scala2-library/src/[abcefimprs]*": true, // only allow scala-backend/src/library
"scala-backend/{doc,docs,lib,META-INF,scripts,spec,test,tools}/*": true, // only allow scala-backend/src
"scala-backend/{doc,docs,lib,META-INF,scripts,spec,test,tools}/": true, // only allow scala-backend/src
"scala-backend/src/[abefilmprs]*": true, // only allow scala-backend/src/compiler
"scala-backend/src/scala/reflect/*": true,
"scala-backend/src/scala/reflect/": true,
"scala-backend/src/scala/tools/{ant,cmd,reflect,util}*": true,
"scala-backend/src/scala/tools/nsc/*.scala": true,
"scala-backend/src/scala/tools/nsc/[aijrstu]*": true // only allow scala-backend/src/scala/tools/nsc/backend
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ object Build {
""".stripMargin)
}

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

state
Expand Down

0 comments on commit eda5730

Please sign in to comment.