From fa0eb737023aadd0050102dc8da59fcf8bea5ad4 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Mon, 6 Oct 2025 03:16:27 +0200 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=A9=B9=20[Patch]:=20Add=20missing=20d?= =?UTF-8?q?escription=20in=20Get-AstFunctionName=20documentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/functions/public/Functions/Get-AstFunctionName.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/functions/public/Functions/Get-AstFunctionName.ps1 b/src/functions/public/Functions/Get-AstFunctionName.ps1 index 938b16b..270c3a8 100644 --- a/src/functions/public/Functions/Get-AstFunctionName.ps1 +++ b/src/functions/public/Functions/Get-AstFunctionName.ps1 @@ -44,6 +44,8 @@ .OUTPUTS System.String + Description is here? + .NOTES The name of each function found in the PowerShell script. From 385da0dbe09d58abe504f31e31f08f7ae40670ce Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Mon, 6 Oct 2025 03:22:44 +0200 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=A9=B9=20[Patch]:=20Clean=20up=20comm?= =?UTF-8?q?ents=20and=20formatting=20in=20markdown-lint=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/linters/.markdown-lint.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/linters/.markdown-lint.yml b/.github/linters/.markdown-lint.yml index b9ecdfa..d9653d7 100644 --- a/.github/linters/.markdown-lint.yml +++ b/.github/linters/.markdown-lint.yml @@ -8,18 +8,20 @@ ############### # Rules by id # ############### -MD004: false # Unordered list style +MD004: false # Unordered list style MD007: - indent: 2 # Unordered list indentation + indent: 2 # Unordered list indentation MD013: - line_length: 808 # Line length + line_length: 808 # Line length +MD024: + siblings_only: true # Allow duplicate headings in different sections MD026: - punctuation: ".,;:!。,;:" # List of not allowed -MD029: false # Ordered list item prefix -MD033: false # Allow inline HTML -MD036: false # Emphasis used instead of a heading + punctuation: '.,;:!。,;:' # List of not allowed +MD029: false # Ordered list item prefix +MD033: false # Allow inline HTML +MD036: false # Emphasis used instead of a heading ################# # Rules by tags # ################# -blank_lines: false # Error on blank lines +blank_lines: false # Error on blank lines From e56788a24c602614b570888c73e09948bd0efbc6 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Mon, 6 Oct 2025 10:14:01 +0200 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=A9=B9=20[Patch]:=20Update=20descript?= =?UTF-8?q?ion=20in=20Get-AstFunctionName=20documentation=20and=20add=20Li?= =?UTF-8?q?nter=20configuration=20to=20PSModule.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/PSModule.yml | 9 +++++++++ src/functions/public/Functions/Get-AstFunctionName.ps1 | 3 +-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/PSModule.yml b/.github/PSModule.yml index 35f3fc6..96c0cd8 100644 --- a/.github/PSModule.yml +++ b/.github/PSModule.yml @@ -19,3 +19,12 @@ Test: # Build: # Docs: # Skip: true +Linter: + env: + VALIDATE_BIOME_FORMAT: false + VALIDATE_BIOME_LINT: false + VALIDATE_GITHUB_ACTIONS_ZIZMOR: false + VALIDATE_JSCPD: false + VALIDATE_JSON_PRETTIER: false + VALIDATE_MARKDOWN_PRETTIER: false + VALIDATE_YAML_PRETTIER: false diff --git a/src/functions/public/Functions/Get-AstFunctionName.ps1 b/src/functions/public/Functions/Get-AstFunctionName.ps1 index 270c3a8..77cdf1c 100644 --- a/src/functions/public/Functions/Get-AstFunctionName.ps1 +++ b/src/functions/public/Functions/Get-AstFunctionName.ps1 @@ -44,7 +44,7 @@ .OUTPUTS System.String - Description is here? + The names of functions found in the PowerShell script. .NOTES The name of each function found in the PowerShell script. @@ -52,7 +52,6 @@ .LINK https://psmodule.io/Ast/Functions/Functions/Get-AstFunctionName/ #> - [CmdletBinding()] param ( # The name of the command to search for. Defaults to all commands ('*').