Hi all, I’m trying to set a scalac compiler option...
# general
m
Hi all, I’m trying to set a scalac compiler option,
-Ypartial-unification
globally in my build, but I can’t find any documentation on how to do so. Could you guys help me out?
p
you add an entry to your pants.ini with the following:
Copy code
[compile.rsc]
args: [
    '-S-Ypartial-unification',
  ]
👍 2
m
cheers