Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/PSModule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
18 changes: 10 additions & 8 deletions .github/linters/.markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 2 additions & 1 deletion src/functions/public/Functions/Get-AstFunctionName.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,14 @@
.OUTPUTS
System.String

The names of functions found in the PowerShell script.

.NOTES
The name of each function found in the PowerShell script.

Comment thread
MariusStorhaug marked this conversation as resolved.
.LINK
https://psmodule.io/Ast/Functions/Functions/Get-AstFunctionName/
#>

[CmdletBinding()]
param (
# The name of the command to search for. Defaults to all commands ('*').
Expand Down
Loading