Disable format comment

Answered

I have such comment in java class

But after format I have such

/**
* <ul>
* <li>subtract from account</li>
* <li>create record with
* <ul>
* <li>user id</li>
* </ul>
* </li>
* </ul>
*/
/**
* <ul>
* <li>subtract from account</li>
* <li>create record with
* <ul>
* <li>user id</li>
* </ul>
* </li>
* </ul>
*/

Where I can disable such behavior

0
5 comments

Easiest way is:

File > Settings > Editor > Code Style > Java > Enable JavaDoc formatting

 

0

You can disable JavaDoc formatting here:

0

I want support JavaDoc format

Only disable formatting comments with JSON, XML, HTML, CSS etc...

0

Thank

Fix... use

// @formatter:off
// @formatter:on
0

Please sign in to leave a comment.