Matt McNabb
Matt McNabb
So I'm thinking about adding a dark theme to go along with the ISE theme added this spring. My thoughts are that I'd like to keep the console colors as-is,...
There is currently a rule that warns when I have assigned a variable but haven't called it (UseDeclaredVarsMoreThanAssignments), however, there doesn't appear to be a rule that warns me if...
When counting lines of code in a script or function, I'd argue that it's most valuable to only consider significant lines of code. It appears that `Get-FunctionLinesOfCode` is already excluding...
Not sure what I'm doing wrong here, but when I run `Invoke-PSCodeHealth` against any module I have created, I get no results from any of the metrics, other than number...
The 1.3.0beta releases include inputs for chart controls via the -FilterFields parameter of New-UDChart. It would be great to have inputs like this available for any component, not just charts....
I think it would be great if we could export our dashboard pages as PDF or HTML documents, or even just images. This would be a great lightweight reporting tool.
The -Scan parameter is mandatory and is also a switch param. This kind of goes against the nature of a switch parameter if it must be included, and the if...
Is it possible to execute an arbitrary SQL query using a DataContext, similar to the `Execute()` extension method for the DataConnection class? I can't seem to find any examples of...
See title
in the file Scripting/LanguageandParser/ParameterBinding.Tests.ps1 you haven't put your assertions inside It blocks. This results in tests that don't actually fail, but you also don't have any useful output. ``` Powershell...