Marcin Procyk
Marcin Procyk
These are just workarounds, what about to add a flag to disable default imports defined in `TwirlCompiler.scala`? ``` val DefaultImports = Seq( "_root_.play.twirl.api.TwirlFeatureImports._", "_root_.play.twirl.api.TwirlHelperImports._", "_root_.play.twirl.api.Html", "_root_.play.twirl.api.JavaScript", "_root_.play.twirl.api.Txt", "_root_.play.twirl.api.Xml" ) ```
**For Scala 2.13.2 version and above** use: `scalacOptions +== "-Wconf:src=target/.*:s"` For other versions of Scala use [Silencer plugin](https://github.com/ghik/silencer): `scalacOptions +== "-P:silencer:pathFilters=target/.*"`
Resolved by #2362
Not sure if my case refers to this issue, but it seems kinda similar. I've set [Prettier VSC extension](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) `html.format.wrapLineLength` and `prettier.printWidth` properties to the same value. Every time the...
Could be this feature possible as optional @j-f1 ? If not, could somebody suggest please another tool/solution to get expected result?
@duailibe thanks for your suggestion. I may have a try, will be this possible to release with prettier or as forked side-project only?
@duailibe, so maybe there is an option to disable just Prettier line wrapping - I cannot see it right now? I do not want to remove Prettier at all, because...