From 16eab024a892a1fe20750284625990b9afcbaadb Mon Sep 17 00:00:00 2001 From: Lucas Burson Date: Sun, 16 Oct 2016 20:29:12 -0500 Subject: [PATCH 1/2] Move 'sandbox/scalajs/hello.scala' to 'sandbox/scalajs/src/main/scala/hello.scala' to fix an ensime error. After this change, `sbt ensimeConfig` works. The ensime error message: ``` [error] You have .scala files in the base of your project. Such "script style" projects [error] are not supported by ENSIME. Simply move them into src/main/scala to get support. [error] Please read https://github.com/ensime/ensime-server/issues/1432 ``` --- sandbox/scalajs/{ => src/main/scala}/hello.scala | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename sandbox/scalajs/{ => src/main/scala}/hello.scala (100%) diff --git a/sandbox/scalajs/hello.scala b/sandbox/scalajs/src/main/scala/hello.scala similarity index 100% rename from sandbox/scalajs/hello.scala rename to sandbox/scalajs/src/main/scala/hello.scala From b652a6e0f8ae3e952816a0818c3689943ea6f8e8 Mon Sep 17 00:00:00 2001 From: Lucas Burson Date: Sun, 16 Oct 2016 21:17:38 -0500 Subject: [PATCH 2/2] Ignore ensime files from sbt --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 416a12effd24..a34babd4f649 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,8 @@ project/boot/ project/plugins/project/ project/local-plugins.sbt .history +.ensime +.ensime_cache/ # Scala-IDE specific .scala_dependencies