To keep the same formatting across the entire project and multiple users project can use .editorconfig file. I never worked with Clnag Tidy file but looks similar. editorconfig can define code style settings which will be associated with a codebase rather than a Visual Studio personal account. To read more more about code styles in VS 2017 follow this link
ReSharper is also able to work with defined .editorconfig file. But it looks like ReSharper have broader range of checks than default config file.
Choices are:
editorconfig is included in project but it replaces checks done by ReSharper
rely on ReShaper to do code consistence checks, but there are people who does not have RS installed.
To keep the same formatting across the entire project and multiple users project can use
.editorconfig
file. I never worked with Clnag Tidy file but looks similar.editorconfig
can define code style settings which will be associated with a codebase rather than a Visual Studio personal account. To read more more about code styles in VS 2017 follow this linkReSharper is also able to work with defined
.editorconfig
file. But it looks like ReSharper have broader range of checks than default config file.Choices are:
editorconfig
is included in project but it replaces checks done by ReSharperLet me know what do you think.
Related #98