mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2024-12-21 03:29:30 +00:00
sort imports
This commit is contained in:
parent
037c292c64
commit
0cdc2fc7af
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -53,4 +53,4 @@ jobs:
|
||||
- name: Check that workflows are up to date
|
||||
run: sbt ++${{ matrix.scala }} githubWorkflowCheck
|
||||
|
||||
- run: sbt ++${{ matrix.scala }} scalafmtCheck test
|
||||
- run: sbt ++${{ matrix.scala }} 'scalafixAll --check' scalafmtCheck test
|
||||
|
@ -3,6 +3,7 @@ rules = [
|
||||
]
|
||||
|
||||
OrganizeImports {
|
||||
removeUnused = false
|
||||
expandRelative = true
|
||||
groups = [
|
||||
"java",
|
||||
|
@ -1,14 +1,14 @@
|
||||
package com.htmlism.firepower.demo
|
||||
|
||||
import java.io.IOException
|
||||
|
||||
import scala.util.chaining._
|
||||
|
||||
import cats.syntax.all._
|
||||
import zio.*
|
||||
|
||||
import com.htmlism.firepower.demo.asm._
|
||||
import com.htmlism.firepower.demo.str._
|
||||
import zio.*
|
||||
|
||||
import java.io.IOException
|
||||
import com.htmlism.rufio.withzio.*
|
||||
|
||||
object PrintPrograms extends ZIOAppDefault:
|
||||
|
@ -17,7 +17,7 @@ object GitHubActionsSettings extends AutoPlugin {
|
||||
GitHubActionsPlugin
|
||||
|
||||
override val buildSettings: Seq[Setting[_]] = Seq(
|
||||
githubWorkflowBuild := Seq(WorkflowStep.Sbt(List("scalafmtCheck", "test"))),
|
||||
githubWorkflowBuild := Seq(WorkflowStep.Sbt(List("scalafixAll --check", "scalafmtCheck", "test"))),
|
||||
githubWorkflowEnv := Map("GH_PACKAGES_TOKEN" -> "${{ secrets.GH_PACKAGES_TOKEN }}"),
|
||||
githubWorkflowPublishTargetBranches := Nil,
|
||||
githubWorkflowIncludeClean := false
|
||||
|
Loading…
Reference in New Issue
Block a user