R# parameter hint, how do I turn it off? - resharper

Where can I turn off this feature:
R# 2018.3 eap7

Found it...
R# => Options => Environment => Inline hints => Uncheck inline parameter hints

Related

Are there any known issues with TypeScript 0.9.1, ReSharper 8.x and VS2012?

The question is fairly straightforward really. The symptom is that, with ReSharper enabled in VS2012 8.x, intellisense simply won't work. Each time I turn on "Auto list members" and "Parameter information", something switches it off, almost immediately.
The only something I can fathom is ReSharper. When I suspend it, this no longer happens.
NOTE: This blog post from JetBrains - http://resharper-support.jetbrains.com/entries/24931358-Does-ReSharper-support-TypeScript- does not fix the issue.
Can anybody help?
You can completely disable ReSharper 8's TypeScript support in Options -> Languages, or you can selectively disable ReSharper's TypeScript intellisense by language in Options -> IntelliSense -> General. Select "Limited ReSharper IntelliSense" and select all except TypeScript.
I couldn't get citizenmatt's solution to work for me, but ReSharper 8.1 fixed the issue, so everyone who is still on 8.0 and is bothered by the lack of intellisense for TypeScript should download the update.

resharper disable for c# .cs files

is it possible to only enable resharper for javascript and css files? I don't want it inspecting my c# files as it's driving me nuts with it's styling and and at times somewhat controversial recommendations. I haven't got time to set each individual setting, I'm just looking for a "don't inspect c# files" check box, if there isn't one I think my resharper trial will be officially over.
If you really want to disable ReSharper for C#, try going to ReSharper | Options -> Code Inspection | Settings -> Edit Items to Skip and add a file mask to skip *.cs.
But better way would be to disable those ReSharper warnings that you don't like. To do this, click Alt-Enter on the suggestion that you don't like, go to Options submenu, select Configure inspection severity and then Do not show. This is for ReSharper 8.0, in 7.1 it should be pretty similar.

ReSharper intellisense does not display documentation

Any idea why I'm not getting any documentation to go along with my ReSharper IntelliSense? If I go to the ReSharper options and enable the Visual Studio IntelliSense instead, I get the proper documentation when going through the members in the IntelliSense pop up. If I re-enable the ReSharper IntelliSense, I now get the ReSharper IntelliSense pop up sans documentation.
Go to ReSharper | Options -> Environment | IntelliSense | Completion Appearance. Check Show member signatures and Show summary.
For those who, like me, tried the solution provided above and it didn't work. I found this article and it did the trick for me.
Go to Tools - Options - Text Editor - C# (or all Languages, or whatever you need).
In the general section, the options Auto list Members and Parameter information must be enabled. (I suppose only Parameter Information would be fine to, but i enabled the other one anyway as its a nice feature).

ReSharper - how to disable generation of rubbish documentation headers in Code Cleanup

We're using ReSharper 6.0 with StyleCop for ReSharper.
Although we use the StyleCop rule that members must have documentation headers, we don't want ReSharper's code cleanup facility to generate documentation headers for us, because they're inevitably rubbish. Bad doc headers are worse than none at all because they're less likely to be updated than added in the first place.
We tried turning off the setting 'Insert text into documentation and file headers' in ReSharper => Options => Tools => StyleCop but it bloody resets itself when you restart visual studio.
Any ideas how we can stop Code Cleanup creating documentation headers for us?
ReSharper -> Options -> Tools section -> Code Cleanup -> select StyleCop profile -> Documentation section -> untick 1600.
Will prevent default documentation headers being created but StyleCop will still enforce that they should be there.
The second step, after blocking code generation is Removing the rubbish.
I used a regex Search/Replace through visual studio.
Regex is for header :
// ---.*\r\n\/\/.*\r\n\/\/.*\r\n\/\/.*\r\n\/\/.*\r\n\/\/.*\r\n.*\r\n\/\/.-{116}
Regex to remove Generated summaries
\s{4}\/\/\/\s<summary>(.*)\r\n.*\r\n.*</summary>
Caution : it will remove ALL summaries, even the good ones, so check the replacement scope before launching it. (git checkout might be your friend...)

R# and StyleCop

I recently installed R# 6, in my previous version of R# I could disable StyleCop when editing old files by selecting options and disabling the StyleCop plugin. I can't find the option for this in R# 6, it's really annoying when opening an old file that had loads of violations (it really distracts me from the code).
Does anyone know where the option to disable plugin in R# 6 is?
Thanks,
Gareth.
EDIT:
Just to confirm, my previous version was 4.5, and to turn off StyleCop it was Resharper -> Plugins -> Then uncheck StyleCop...
The Dialog with the Plugins has moved to the Resharper Options.
Resharper -> Options -> [Environment - Plugins]

Resources