Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.91 KB

CONTRIBUTING.md

File metadata and controls

48 lines (33 loc) · 1.91 KB

Contributing

All contributions, whether comments, code or otherwise are welcomed and appreciated.

IdentityCommand.DPA Issues

If you find an error in IdentityCommand.DPA, or have a question relating to the module, log an issue.

Contributing Code

  • Fork the repo.
  • Push your changes to your fork.
  • Write good commit messages
    • use of emojis are encouraged.
  • If no related issue exists already, open a New Issue describing the problem being fixed or feature.
  • Update documentation for the command as required.
  • Submit a pull request to the Dev Branch
    • Keep pull requests limited to a single issue
    • Discussion, or necessary changes may be needed before merging the contribution.
    • Link the pull request to the related issue

PowerShell Styleguide

Use the standard Verb-Noun convention, and only use approved verbs.

K&R (One True Brace Style variant) preferred.

Updating Documentation

External Help File

Command Help Markdown files are the source of truth for the Get-Help content of the module.

Changes to these markdown files must be reflected in the Get-Help content.

platyPS must be used to automatically generate the external help file:

#From the module root directory, run:
import-module platyPS
New-ExternalHelp -Path .\docs\collections\_commands\ -OutputPath .\IdentityCommand.DPA\en-US\IdentityCommand.DPA-help.xml -Force