How do I configure `pants.backend.experimental.jav...
# general
s
How do I configure
pants.backend.experimental.javascript.lint.prettier
to not format files like
**/static/**/*.js
?
Does it pick up prettier config?
Actually, prettier doesn't know how to deal with
htm
template literal tags. I think I'm going to just scrap this for now
h
How are you running it?
s
pants fmt dir/::
h
Hmm, many lintable targets have
skip_*
fields to tell pants to skip specific linters for that target (e.g., https://www.pantsbuild.org/2.20/reference/targets/python_sources) but prettier is a little different I think
You can skip prettier on a javascript_sources
🙏 1