-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptAnalyzer.requirements.psd1
More file actions
44 lines (42 loc) · 1.97 KB
/
Copy pathScriptAnalyzer.requirements.psd1
File metadata and controls
44 lines (42 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@{
# Some defaults for all dependencies
PSDependOptions = @{
Target = '.\artifacts\CustomScriptAnalyzerRules'
}
<# PSScriptAnalyzer Community Rules
'PSScriptAnalyzerCommunityRules_psd1' = @{
DependencyType = 'FileDownload'
Source = 'https://raw.githubusercontent.com/PowerShell/PSScriptAnalyzer/development/Tests/Engine/CommunityAnalyzerRules/CommunityAnalyzerRules.psd1'
Target = '.\artifacts\CustomScriptAnalyzerRules\CommunityAnalyzerRules\CommunityAnalyzerRules.psd1'
}
'PSScriptAnalyzerCommunityRules_psm1' = @{
DependencyType = 'FileDownload'
Source = 'https://raw.githubusercontent.com/PowerShell/PSScriptAnalyzer/development/Tests/Engine/CommunityAnalyzerRules/CommunityAnalyzerRules.psm1'
Target = '.\artifacts\CustomScriptAnalyzerRules\CommunityAnalyzerRules\CommunityAnalyzerRules.psm1'
}
'PSScriptAnalyzerCommunityRules_en-us_psd1' = @{
DependencyType = 'FileDownload'
Source = 'https://raw.githubusercontent.com/PowerShell/PSScriptAnalyzer/development/Tests/Engine/CommunityAnalyzerRules/en-US/CommunityAnalyzerRules.psd1'
Target = '.\artifacts\CustomScriptAnalyzerRules\CommunityAnalyzerRules\en-US\CommunityAnalyzerRules.psd1'
}
#>
'MBAnalyzerRules' = @{
DependencyType = 'FileDownload'
Source = 'https://raw.githubusercontent.com/MathieuBuisson/PowerShell-DevOps/master/CustomPSScriptAnalyzerRules/MBAnalyzerRules.psm1'
Target = '.\artifacts\CustomScriptAnalyzerRules\MBAnalyzerRules\MBAnalyzerRules.psm1'
}
'matt2005/InjectionHunter' = @{
Version = '1.0.1'
DependencyType = 'GitHub'
Parameters = @{
TargetType = 'Parallel'
}
}
<#'InjectionHunter' = @{
DependencyType = 'PSGalleryModule'
Parameters = @{
Repository = 'PSGallery'
}
}
#>
}