Code Monkey home page Code Monkey logo

Comments (6)

anancds avatar anancds commented on September 23, 2024 1

if use play framework,you can try this:

lazy val root = (project in file(".")).enablePlugins(PlayScala).
  settings(
    (scalastyleSources in Compile) := {
      val scalaSourceFiles = ((scalaSource in Compile).value ** "*.scala").get
      scalaSourceFiles.filterNot(_.getAbsolutePath.contains("example.scala")).filterNot(_.getAbsolutePath.contains("somefolder"))
    }
  )

from scalastyle-sbt-plugin.

matthewfarwell avatar matthewfarwell commented on September 23, 2024

By default the sbt plugin uses the normal scalaSource setting. There isn't a way to exclude a particular set of directories at the minute.

from scalastyle-sbt-plugin.

jeffsteinmetz avatar jeffsteinmetz commented on September 23, 2024

+1

Does this commit improve this?

3138330

from scalastyle-sbt-plugin.

samarthgupta437 avatar samarthgupta437 commented on September 23, 2024

+1 would like to see this feature.
[edit] look like its implemented in oct 2015 https://github.com/scalastyle/scalastyle/blob/e19b54eacb6502b47b1f84d7b2a6b5d33f3993bc/src/main/scala/org/scalastyle/Main.scala#L51 , but i am not able to figure out how to use in maven plugin.

from scalastyle-sbt-plugin.

matthewfarwell avatar matthewfarwell commented on September 23, 2024

This should be fixed. You can now supply a list of files to scalastyleSources. This should be available to test in 0.9.0-SNAPSHOT. Closing issue.

from scalastyle-sbt-plugin.

arthurarty avatar arthurarty commented on September 23, 2024

if use play framework,you can try this:

lazy val root = (project in file(".")).enablePlugins(PlayScala).
  settings(
    (scalastyleSources in Compile) := {
      val scalaSourceFiles = ((scalaSource in Compile).value ** "*.scala").get
      scalaSourceFiles.filterNot(_.getAbsolutePath.contains("example.scala")).filterNot(_.getAbsolutePath.contains("somefolder"))
    }
  )

When using the above you code in your build.sbt might run into the error.

warning: method in in trait ScopingSetting is deprecated (since 1.5.0): `in` is deprecated; migrate to slash

Updated way to do it is.

  (Compile / scalastyleSources) := {
    val scalaSourceFiles = ((Compile / scalaSource).value ** "*.scala").get
    scalaSourceFiles.filterNot(_.getAbsolutePath.contains("example.scala")).filterNot(_.getAbsolutePath.contains("somefolder"))
  },

Reference

Note:

This worked with the sbt plugin.

from scalastyle-sbt-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.