Skip to content

Commit

Permalink
Removing hidden dependency between yarnInstall and spotlessPython
Browse files Browse the repository at this point in the history
Fixes #1240
  • Loading branch information
oxisto committed Jul 18, 2023
1 parent 9dbf4a4 commit 5fe002f
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ spotless {
}

python {
targetExclude(
fileTree(project.projectDir) {
include("**/node_modules")
}
)
target("src/main/**/*.py")
licenseHeader(headerWithHashes, "from").yearSeparator(" - ")
}
Expand All @@ -116,4 +121,4 @@ spotless {
target("src/main/golang/**/*.go")
licenseHeader(headerWithStars, "package").yearSeparator(" - ")
}
}
}

0 comments on commit 5fe002f

Please sign in to comment.