Open
Description
Environment
- Visual Studio version: 2019 16.11.9
- CodeMaid version: 12.0
- Code language: XML (e.g. config file)
Description
Is there a config option where I can set the formatting feature to include or not include the space before the closing /> XML tag? This is causing lot of unnecessary code changes during the code review.
Steps to recreate
Currently I'm always having <see cref="" />
XML tags with space before the />. I would like to have the possibility to remove the space as follows: <see cref=""/>
.
Current behavior
XML tag containing the space: <see cref="" />
Expected behavior
make it configurable to have XML tag not containing the space: <see cref=""/>
or containing the space: <see cref="" />