Joel Bennett

Results 127 issues of Joel Bennett

Can we get you to stick a license on this?

Can't you at least rename or hide the commands so that I'm not getting [bug reports about command clobbering](https://github.com/PoshCode/ModuleBuilder/issues/34#issuecomment-444848550)?

### Prerequisites - [X] Write a descriptive title. - [X] Make sure you are able to repro it on the [latest released version](https://github.com/PowerShell/PowerShell/releases) - [X] Search the existing issues. -...

WG-Interactive-Console
Needs-Triage

## Can't set CoveragePercentTarget in New-PesterConfiguration ```PowerShell $Config = New-PesterConfiguration @{ CodeCoverage = @{ CoveragePercentTarget = 90 }} $Config.Codecoverage.CoveragePercentTarget ``` ```Text Default Description Value ------- ----------- ----- 75 Target percent...

Bug
Code coverage

There is currently a recommendation in [Function and Structure](https://github.com/PoshCode/PowerShellPracticeAndStyle/blob/master/Style%20Guide/Function%20Structure.md) to not use "return" but it says to "just put the variable on a line by itself" ... I wonder if...

There's been some discussion recently about when it's appropriate to write errors ... 1. [A bug filed against `Get-TypeData`](https://github.com/PowerShell/PowerShell/issues/4235) 2. [The PR to fix the "bug"](https://github.com/PowerShell/PowerShell/pull/7434) 3. [A bug filed...

Best Practices
Discussion

There are [many brace and indent styles](https://en.wikipedia.org/wiki/Indent_style#Styles) in programming, but in the PowerShell community, there are essentially three: * BSD/Allman style * K&R/OTBS * Stroustroup I've briefly given an example...

Should we be embedding Command Prefixes in function names, or using the PSD1 to specify the default? I'm going to start this debate by saying that I think putting prefixes...

Best Practices

Hey, anyone interested in trading success stories about how you "build" modules? I just tried something new this week on the [SecretServer](https://github.com/RamblingCookieMonster/SecretServer) module, thanks to @bushe and @ramblingcookiemonster ... where...

enhancement
Best Practices
Discussion