All Projects → JetBrains → Resharper Cyclomatic Complexity

JetBrains / Resharper Cyclomatic Complexity

Licence: apache-2.0
ReSharper plugin to measure cyclomatic complexity as you type

Projects that are alternatives of or similar to Resharper Cyclomatic Complexity

Multihighlight
Jetbrains IDE plugin: highlight identifiers with custom colors 🖌💡
Stars: ✭ 65 (-39.25%)
Mutual labels:  jetbrains, plugin
Resharper Angularjs
ReSharper plugin for AngularJS support
Stars: ✭ 135 (+26.17%)
Mutual labels:  jetbrains, plugin
Poetry Pycharm Plugin
A PyCharm plugin for poetry
Stars: ✭ 113 (+5.61%)
Mutual labels:  jetbrains, plugin
Envfile
EnvFile 3.0 is a plugin for JetBrains IDEs that allows you to set environment variables for your run configurations from one or multiple files.
Stars: ✭ 293 (+173.83%)
Mutual labels:  jetbrains, plugin
Runconfigurationasaction
Provides a way to use IntelliJ run configurations as buttons
Stars: ✭ 17 (-84.11%)
Mutual labels:  jetbrains, plugin
Nord Jetbrains
An arctic, north-bluish clean and elegant JetBrains IDE UI and editor color theme.
Stars: ✭ 293 (+173.83%)
Mutual labels:  jetbrains, plugin
Resharper Fsharp
F# support in JetBrains Rider
Stars: ✭ 216 (+101.87%)
Mutual labels:  jetbrains, plugin
Resharper Unity
Unity support for both ReSharper and Rider
Stars: ✭ 953 (+790.65%)
Mutual labels:  jetbrains, plugin
A File Icon Idea
Atom File Icons plugin for IntelliJ IDEA products
Stars: ✭ 90 (-15.89%)
Mutual labels:  jetbrains, plugin
Gitlink
A Jetbrains plugin that opens a local file under Git version control in its remote host using the default browser.
Stars: ✭ 101 (-5.61%)
Mutual labels:  plugin
Consulo Unity3d
Frameworks: Unity3D
Stars: ✭ 104 (-2.8%)
Mutual labels:  plugin
Flutter iap
Flutter iap plugin
Stars: ✭ 101 (-5.61%)
Mutual labels:  plugin
Japicmp Gradle Plugin
A Gradle plugin for JApicmp
Stars: ✭ 101 (-5.61%)
Mutual labels:  plugin
N1 Unsubscribe
Plugin for Nylas Mail that adds a quick unsubscribe button for email.
Stars: ✭ 105 (-1.87%)
Mutual labels:  plugin
Doctordark
📂 MacForge Plugin to bring dark mode to macOS
Stars: ✭ 100 (-6.54%)
Mutual labels:  plugin
Ymate Platform V2
YMP是一个非常简单、易用的轻量级Java应用开发框架,涵盖AOP、IoC、WebMVC、ORM、Validation、Plugin、Serv、Cache等特性,让开发工作像搭积木一样轻松!
Stars: ✭ 106 (-0.93%)
Mutual labels:  plugin
Restfultoolkit
A Toolkit for RESTful services development.
Stars: ✭ 101 (-5.61%)
Mutual labels:  plugin
Wordless
All the power of Pug, Sass, Coffeescript and WebPack in your WordPress theme. Stop writing themes like it's 1998.
Stars: ✭ 1,374 (+1184.11%)
Mutual labels:  plugin
Nvim Toggleterm.lua
A neovim lua plugin to help easily manage multiple terminal windows
Stars: ✭ 102 (-4.67%)
Mutual labels:  plugin
Intellij Elixir
Elixir plugin for JetBrain's IntelliJ Platform (including Rubymine)
Stars: ✭ 1,488 (+1290.65%)
Mutual labels:  jetbrains

official JetBrains project

Rider ReSharper

Cyclomatic complexity plugin for ReSharper

This is a ReSharper plugin that measures cyclomatic complexity as you type. If the complexity of a method, function or property exceeds a configurable threshold, the method, function or property is marked with a warning highlight ("squiggly"). Supported languages are C#, VB, JavaScript, TypeScript and C++.

It can be installed by going to ReSharper → Extensions Manager and searching for "Cyclomatic Complexity".

Cyclomatic complexity is a metric intended to show the complexity of your code. It measures the number of paths through a code block - the more branches and conditional statements, the higher the metric. As the code gets more complex, the metric gets higher. A higher value is a good indicator that a method is getting too complex, and is becoming a maintainability risk, and should be refactored. You can read more about cyclomatic complexity at wikipedia.

The complexity of a method, function or other code member is always available as a tooltip on the method name:

Complexity displayed as an info tooltip

When the complexity reaches a configurable threshold, the tooltip is shown as a warning:

Complexity exceeds the configurable threshold

And the complexity threshold can be configured in the options, per language:

Options

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].