Search code examples
c#intellisenseomnisharpeditorconfig

Editorconfig: How to Get Warnings for All Uses of `public`


Because I'm not creating a library, I want to replace all uses of public inside my project to internal.

While I can do this with Find and Replace, is there a configuration that I can add to .editorconfig that will give me warnings about all uses of public so I automatically know if there's something I want to replace?


Solution

  • Just got an answer here.

    Sadly, what I want to do seems to be impossible.