From cfcb78b35e0b47af2294310a89ee73cf2ee1ecda Mon Sep 17 00:00:00 2001 From: Prabhu Subramanian Date: Wed, 24 May 2023 16:10:15 +0000 Subject: [PATCH] Cleanup Signed-off-by: Prabhu Subramanian --- README.md | 21 +++++++++++++++++++++ src/main/scala/io/appthreat/atom/Atom.scala | 3 --- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e69de29..d638f3b 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,21 @@ +# Atom + +```shell + █████╗ ████████╗ ██████╗ ███╗ ███╗ +██╔══██╗╚══██╔══╝██╔═══██╗████╗ ████║ +███████║ ██║ ██║ ██║██╔████╔██║ +██╔══██║ ██║ ██║ ██║██║╚██╔╝██║ +██║ ██║ ██║ ╚██████╔╝██║ ╚═╝ ██║ +╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ +``` + +## License + +Apache-2.0 + +## Developing / Contributing + +```shell +sbt scalafmt +sbt stage +``` diff --git a/src/main/scala/io/appthreat/atom/Atom.scala b/src/main/scala/io/appthreat/atom/Atom.scala index c77f6bd..03c839e 100644 --- a/src/main/scala/io/appthreat/atom/Atom.scala +++ b/src/main/scala/io/appthreat/atom/Atom.scala @@ -13,8 +13,6 @@ import io.shiftleft.codepropertygraph.generated.Languages import scopt.OptionParser object Atom { - // Special string used to separate opts from frontend-specific opts - val ARGS_DELIMITER = "--frontend-args" val DEFAULT_CPG_OUT_FILE = "cpg.bin" var generator: CpgGenerator = _ val MAVEN_JAR_PATH: ScalaFile = ScalaFile.home / ".m2" @@ -55,7 +53,6 @@ object Atom { .action((_, c) => c.copy(enhance = true)) note("Misc") help("help").text("display this help message") - note(s"Args specified after the $ARGS_DELIMITER separator will be passed to the front-end verbatim") } private def run(args: Array[String]): Either[String, String] = {