-
-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
54 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
package mill.pythonlib | ||
|
||
import mill._ | ||
import mill.define.ExternalModule | ||
import mill.define.Discover | ||
import mill.TaskModule | ||
|
||
trait RuffModule extends PythonModule { | ||
|
||
override def pythonToolDeps = Task { | ||
super.pythonToolDeps() ++ Seq("ruff>=0.8.1") | ||
} | ||
|
||
/** Ad-hoc command to invoke ruff on the sources of this module. | ||
* | ||
* You'll need to supply any subcommand that ruff understands. For example: | ||
* | ||
* - format sources: ruff format | ||
* - check format of sources: ruff format --check | ||
* - see format diff: ruff format --diff | ||
* - find linting errors: ruff check | ||
* - automatically fix linting errors: ruff check --fix | ||
* | ||
*/ | ||
def ruff(args: String*) = Task.Command { | ||
runner().run( | ||
// format: off | ||
( | ||
"-m", "ruff", | ||
args, | ||
sources().map(_.path) | ||
), | ||
// format: on | ||
workingDir = Task.dest | ||
) | ||
} | ||
|
||
} | ||
|
||
/** | ||
* Includes some common tasks to reformat and check all sources. This mimics ScalafmtModule, so that | ||
* | ||
*/ | ||
object RuffModule extends ExternalModule with TaskModule { | ||
|
||
def defaultCommandName() = "reformatAll" | ||
|
||
lazy val millDiscover: Discover = Discover[this.type] | ||
|
||
def reformatAll | ||
|
||
|
||
} | ||
|