Modify the config.json
file in the /bin/Debug
folder of the server. On my machine, the server is located in ~/.vim/bundle/Omnisharp/server/OmniSharp
.
You will see that some examples are ignored in the default configuration file .
To ignore this problem, add this rule:
"^Redundant argument name specification$"
If this is the only rule besides the default rules, the IgnoredCodeIssues section of the config.js file will look like this:
"IgnoredCodeIssues": [ "^Keyword 'private' is redundant. This is the default modifier.$", ".* should not separate words with an underscore.*", "^Redundant argument name specification$" ],
source share