.github/workflows/PSScriptAnalyzerSettings.psd1

@{
    ExcludeRules = @(
        'PSUseBOMForUnicodeEncodedFile',
        'PSUseToExportFieldsInManifest'
    )
    Rules = @{
        PSAvoidExclaimOperator = @{
            Enable = $true
        }
        AvoidUsingDoubleQuotesForConstantString = @{
            Enable = $true
        }
        UseCorrectCasing = @{
            Enable = $true
        }
    }
}