├── .gitignore ├── .vscode └── settings.json ├── Indented.ScriptAnalyzerRules ├── Indented.ScriptAnalyzerRules.psd1 ├── Indented.ScriptAnalyzerRules.psm1 ├── build.psd1 ├── help │ ├── Get-FunctionInfo.md │ ├── Invoke-CodingConventionRule.md │ ├── PSAvoidEmptyNamedBlocks.md │ ├── PSAvoidNestedFunctions.md │ ├── PSAvoidProcessWithoutPipeline.md │ ├── PSAvoidUsingAddType.md │ ├── PSAvoidUsingNewObjectToCreatePSObject.md │ ├── PSAvoidUsingThrow.md │ ├── PSAvoidWriteErrorStop.md │ ├── PSDoNotCreateObjectsFromAnEmptyString.md │ ├── PSUseFilterForProcessBlockOnlyFunctions.md │ ├── PSUseSyntacticallyCorrectExamples.md │ └── Resolve-ParameterSet.md ├── public │ ├── helper │ │ ├── Get-FunctionInfo.ps1 │ │ ├── Invoke-CustomScriptAnalyzerRule.ps1 │ │ └── Resolve-ParameterSet.ps1 │ └── rules │ │ ├── AvoidCreatingObjectsFromAnEmptyString.ps1 │ │ ├── AvoidDashCharacters.ps1 │ │ ├── AvoidEmptyNamedBlocks.ps1 │ │ ├── AvoidFilter.ps1 │ │ ├── AvoidHelpMessage.ps1 │ │ ├── AvoidNestedFunctions.ps1 │ │ ├── AvoidNewObjectToCreatePSObject.ps1 │ │ ├── AvoidParameterAttributeDefaultValues.ps1 │ │ ├── AvoidProcessWithoutPipeline.ps1 │ │ ├── AvoidRedirectionOperator.ps1 │ │ ├── AvoidReturnAtEndOfNamedBlock.ps1 │ │ ├── AvoidSmartQuotes.ps1 │ │ ├── AvoidThrowOutsideOfTry.ps1 │ │ ├── AvoidWriteErrorStop.ps1 │ │ ├── AvoidWriteOutput.ps1 │ │ ├── UseExpressionlessArgumentsInTheParameterAttribute.ps1 │ │ └── UseSyntacticallyCorrectExamples.ps1 └── tests │ ├── PSScriptAnalyzer.tests.ps1 │ └── unit │ ├── helper │ ├── Get-FunctionInfo.tests.ps1 │ ├── Invoke-CustomScriptAnalyzerRule.ps1 │ └── Resolve-ParameterSet.tests.ps1 │ └── rules │ ├── AvoidCreatingObjectsFromAnEmptyString.tests.ps1 │ ├── AvoidDashCharacters.tests.ps1 │ ├── AvoidEmptyNamedBlocks.tests.ps1 │ ├── AvoidFilter.tests.ps1 │ ├── AvoidHelpMessage.tests.ps1 │ ├── AvoidNestedFunctions.tests.ps1 │ ├── AvoidNewObjectToCreatePSObject.tests.ps1 │ ├── AvoidParameterAttributeDefaultValues.tests.ps1 │ ├── AvoidProcessWithoutPipeline.tests.ps1 │ ├── AvoidSmartQuotes.tests.ps1 │ ├── AvoidThrowOutsideOfTry.tests.ps1 │ ├── AvoidWriteErrorStop.tests.ps1 │ ├── UseExpressionlessArgumentsInTheParameterAttribute.tests.ps1 │ └── UseSyntacticallyCorrectExamples.tests.ps1 ├── LICENSE ├── PSScriptAnalyzerSettings.psd1 ├── Readme.md └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/Indented.ScriptAnalyzerRules.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/Indented.ScriptAnalyzerRules.psd1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/Indented.ScriptAnalyzerRules.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/Indented.ScriptAnalyzerRules.psm1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/build.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/build.psd1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/Get-FunctionInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/Get-FunctionInfo.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/Invoke-CodingConventionRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/Invoke-CodingConventionRule.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/PSAvoidEmptyNamedBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/PSAvoidEmptyNamedBlocks.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/PSAvoidNestedFunctions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/PSAvoidNestedFunctions.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/PSAvoidProcessWithoutPipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/PSAvoidProcessWithoutPipeline.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/PSAvoidUsingAddType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/PSAvoidUsingAddType.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/PSAvoidUsingNewObjectToCreatePSObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/PSAvoidUsingNewObjectToCreatePSObject.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/PSAvoidUsingThrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/PSAvoidUsingThrow.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/PSAvoidWriteErrorStop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/PSAvoidWriteErrorStop.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/PSDoNotCreateObjectsFromAnEmptyString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/PSDoNotCreateObjectsFromAnEmptyString.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/PSUseFilterForProcessBlockOnlyFunctions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/PSUseFilterForProcessBlockOnlyFunctions.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/PSUseSyntacticallyCorrectExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/PSUseSyntacticallyCorrectExamples.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/help/Resolve-ParameterSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/help/Resolve-ParameterSet.md -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/helper/Get-FunctionInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/helper/Get-FunctionInfo.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/helper/Invoke-CustomScriptAnalyzerRule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/helper/Invoke-CustomScriptAnalyzerRule.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/helper/Resolve-ParameterSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/helper/Resolve-ParameterSet.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidCreatingObjectsFromAnEmptyString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidCreatingObjectsFromAnEmptyString.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidDashCharacters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidDashCharacters.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidEmptyNamedBlocks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidEmptyNamedBlocks.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidFilter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidFilter.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidHelpMessage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidHelpMessage.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidNestedFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidNestedFunctions.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidNewObjectToCreatePSObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidNewObjectToCreatePSObject.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidParameterAttributeDefaultValues.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidParameterAttributeDefaultValues.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidProcessWithoutPipeline.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidProcessWithoutPipeline.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidRedirectionOperator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidRedirectionOperator.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidReturnAtEndOfNamedBlock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidReturnAtEndOfNamedBlock.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidSmartQuotes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidSmartQuotes.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidThrowOutsideOfTry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidThrowOutsideOfTry.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidWriteErrorStop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidWriteErrorStop.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/AvoidWriteOutput.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/AvoidWriteOutput.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/UseExpressionlessArgumentsInTheParameterAttribute.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/UseExpressionlessArgumentsInTheParameterAttribute.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/public/rules/UseSyntacticallyCorrectExamples.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/public/rules/UseSyntacticallyCorrectExamples.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/PSScriptAnalyzer.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/PSScriptAnalyzer.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/helper/Get-FunctionInfo.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/helper/Get-FunctionInfo.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/helper/Invoke-CustomScriptAnalyzerRule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/helper/Invoke-CustomScriptAnalyzerRule.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/helper/Resolve-ParameterSet.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/helper/Resolve-ParameterSet.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidCreatingObjectsFromAnEmptyString.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidCreatingObjectsFromAnEmptyString.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidDashCharacters.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidDashCharacters.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidEmptyNamedBlocks.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidEmptyNamedBlocks.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidFilter.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidFilter.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidHelpMessage.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidHelpMessage.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidNestedFunctions.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidNestedFunctions.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidNewObjectToCreatePSObject.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidNewObjectToCreatePSObject.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidParameterAttributeDefaultValues.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidParameterAttributeDefaultValues.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidProcessWithoutPipeline.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidProcessWithoutPipeline.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidSmartQuotes.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidSmartQuotes.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidThrowOutsideOfTry.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidThrowOutsideOfTry.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidWriteErrorStop.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/AvoidWriteErrorStop.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/UseExpressionlessArgumentsInTheParameterAttribute.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/UseExpressionlessArgumentsInTheParameterAttribute.tests.ps1 -------------------------------------------------------------------------------- /Indented.ScriptAnalyzerRules/tests/unit/rules/UseSyntacticallyCorrectExamples.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Indented.ScriptAnalyzerRules/tests/unit/rules/UseSyntacticallyCorrectExamples.tests.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/LICENSE -------------------------------------------------------------------------------- /PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/Readme.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.ScriptAnalyzerRules/HEAD/appveyor.yml --------------------------------------------------------------------------------