Skip to content

Commit 74ab9fc

Browse files
author
Per Kops
committed
feat: update atc-coding-rules updater configuration file and script
1 parent 8864a41 commit 74ab9fc

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

atc-coding-rules-updater.json

+17-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
{
2-
"Mappings": {
3-
"Src": { "Paths": [ "src" ] },
4-
"Test": { "Paths": [ "test" ] }
5-
}
2+
"projectTarget": "DotNet8",
3+
"useLatestMinorNugetVersion": true,
4+
"useTemporarySuppressions": false,
5+
"temporarySuppressionAsExcel": false,
6+
"analyzerProviderCollectingMode": "LocalCache",
7+
"mappings": {
8+
"src": {
9+
"paths": [
10+
"src"
11+
]
12+
},
13+
"test": {
14+
"paths": [
15+
"test"
16+
]
17+
}
18+
}
619
}

atc-coding-rules-updater.ps1

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ $currentPath = Get-Location
66

77
Write-Host "Running atc-coding-rules-updater to fetch updated rulesets and configurations"
88
atc-coding-rules-updater `
9-
-r $currentPath `
9+
run `
10+
-p $currentPath `
1011
--optionsPath $currentPath'\atc-coding-rules-updater.json' `
11-
-v true
12+
--verbose

0 commit comments

Comments
 (0)