chore: move codeAnalysis folder to src (#5311)

This commit is contained in:
Andrey Nekrasov 2020-07-30 11:59:24 +03:00 committed by GitHub
parent e94cb34a25
commit 52e9d37b93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,6 +28,7 @@ function Get-Dirty-Files-From-Git() {
$result = New-Object System.Collections.Generic.List[string]
$staged, $unstaged, $untracked | % {
$_.Split(" ") |
where {Test-Path $_ -PathType Leaf} |
where {$sourceExtensions.Contains((Get-Item $_).Extension)} |
foreach {$result.Add($_)}
}