Updated repo rules for PSRule v0.20.0 (#493)

This commit is contained in:
Bernie White 2020-09-11 09:27:01 +10:00 коммит произвёл GitHub
Родитель 14f6b385d8
Коммит 4fb403702a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 14 добавлений и 46 удалений

Просмотреть файл

@ -2,53 +2,21 @@
# Licensed under the MIT License. # Licensed under the MIT License.
# Synopsis: Check for recommended community files # Synopsis: Check for recommended community files
Rule 'OpenSource.Community' -Type 'System.IO.DirectoryInfo' { Rule 'OpenSource.Community' -Type 'PSRule.Data.RepositoryInfo' {
$requiredFiles = @( $Assert.FilePath($TargetObject, 'FullName', @('CHANGELOG.md'));
'CHANGELOG.md' $Assert.FilePath($TargetObject, 'FullName', @('LICENSE'));
'LICENSE' $Assert.FilePath($TargetObject, 'FullName', @('CODE_OF_CONDUCT.md'));
'CODE_OF_CONDUCT.md' $Assert.FilePath($TargetObject, 'FullName', @('CONTRIBUTING.md'));
'CONTRIBUTING.md' $Assert.FilePath($TargetObject, 'FullName', @('SECURITY.md'));
'SECURITY.md' $Assert.FilePath($TargetObject, 'FullName', @('README.md'));
'README.md' $Assert.FilePath($TargetObject, 'FullName', @('.github/CODEOWNERS'));
'.github/CODEOWNERS' $Assert.FilePath($TargetObject, 'FullName', @('.github/PULL_REQUEST_TEMPLATE.md'));
'.github/PULL_REQUEST_TEMPLATE.md'
)
Test-Path -Path $TargetObject.FullName;
for ($i = 0; $i -lt $requiredFiles.Length; $i++) {
$filePath = Join-Path -Path $TargetObject.FullName -ChildPath $requiredFiles[$i];
$Assert.Create((Test-Path -Path $filePath -PathType Leaf), "$($requiredFiles[$i]) does not exist");
}
} }
# Synopsis: Check for license in code files # Synopsis: Check for license in code files
Rule 'OpenSource.License' -Type 'System.IO.FileInfo' -If { $TargetObject.Extension -in '.cs', '.ps1', '.psd1', '.psm1' } { Rule 'OpenSource.License' -Type '.cs', '.ps1', '.psd1', '.psm1' {
$commentPrefix = "`# "; $Assert.FileHeader($TargetObject, 'FullName', @(
if ($TargetObject.Extension -eq '.cs') { 'Copyright (c) Microsoft Corporation.'
$commentPrefix = '// ' 'Licensed under the MIT License.'
} ));
$header = GetLicenseHeader -CommentPrefix $commentPrefix;
$content = Get-Content -Path $TargetObject.FullName -Raw;
$content.StartsWith($header);
}
function global:GetLicenseHeader {
[CmdletBinding()]
[OutputType([String])]
param (
[Parameter(Mandatory = $True)]
[String]$CommentPrefix
)
process {
$text = @(
'Copyright (c) Microsoft Corporation.'
'Licensed under the MIT License.'
)
$builder = [System.Text.StringBuilder]::new();
foreach ($line in $text) {
$Null = $builder.Append($CommentPrefix);
$Null = $builder.Append($line);
$Null = $builder.Append([System.Environment]::NewLine);
}
return $builder.ToString();
}
} }