Skip to content

Commit b3a77d0

Browse files
committed
Optin Tests, Update License Year, VSCode + GitHUb Settings
1 parent 1bbbf03 commit b3a77d0

6 files changed

Lines changed: 61 additions & 1 deletion

File tree

.MetaTestOptIn.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[
22
"Common Tests - Validate Markdown Files",
3-
"Common Tests - Validate Example Files"
3+
"Common Tests - Validate Example Files",
4+
"Common Tests - Validate Module Files",
5+
"Common Tests - Validate Script Files"
46
]

.github/CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
If you'd like to contribute to this project, please review the [Contribution Guidelines](https://github.com/PowerShell/DscResources/blob/master/CONTRIBUTING.md).

.github/ISSUE_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!--
2+
Your feedback and support is greatly appreciated, thanks for contributing!
3+
4+
Please prefix the issue title with the resource name, i.e. 'xCertReq: Short description of my issue'
5+
Please provide the following information regarding your issue (place N/A if the fields that don't apply to your issue):
6+
-->
7+
**Details of the scenario you tried and the problem that is occurring:**
8+
9+
**The DSC configuration that is using the resource (as detailed as possible):**
10+
11+
**Version of the Operating System and PowerShell the DSC Target Node is running:**
12+
13+
**Version of the DSC module you're using, or 'dev' if you're using current dev branch:**

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!--
2+
Thanks for submitting a Pull Request (PR) to this project. Your contribution to this project is greatly appreciated!
3+
4+
Please prefix the PR title with the resource name, i.e. 'xCertReq: My short description'
5+
If this is a breaking change, then also prefix the PR title with 'BREAKING CHANGE:', i.e. 'BREAKING CHANGE: xCertReq: My short description'
6+
7+
To aid community reviewers in reviewing and merging your PR, please take the time to run through the below checklist.
8+
Change to [x] for each task in the task list that applies to this PR.
9+
-->
10+
**Pull Request (PR) description**
11+
<!-- Replace this with a description of your pull request -->
12+
13+
**This Pull Request (PR) fixes the following issues:**
14+
<!-- Replace this with the list of issues or n/a. Use format: Fixes #123 -->
15+
16+
**Task list:**
17+
- [ ] Change details added to Unreleased section of CHANGELOG.md?
18+
- [ ] Added/updated documentation, comment-based help and descriptions in .schema.mof files where appropriate?
19+
- [ ] Examples appropriately updated?
20+
- [ ] New/changed code adheres to [Style Guidelines](https://github.com/PowerShell/DscResources/blob/master/StyleGuidelines.md)?
21+
- [ ] [Unit and (optional) Integration tests](https://github.com/PowerShell/DscResources/blob/master/TestsGuidelines.md) created/updated where possible?

.vscode/settings.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
"powershell.codeFormatting.openBraceOnSameLine": false,
4+
"powershell.codeFormatting.newLineAfterOpenBrace": false,
5+
"powershell.codeFormatting.newLineAfterCloseBrace": true,
6+
"powershell.codeFormatting.whitespaceBeforeOpenBrace": true,
7+
"powershell.codeFormatting.whitespaceBeforeOpenParen": true,
8+
"powershell.codeFormatting.whitespaceAroundOperator": true,
9+
"powershell.codeFormatting.whitespaceAfterSeparator": true,
10+
"powershell.codeFormatting.ignoreOneLineBlock": false,
11+
"powershell.codeFormatting.preset": "Custom",
12+
"files.trimTrailingWhitespace": true,
13+
"files.insertFinalNewline": true
14+
}

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,15 @@ xVirtualMemory has the following properties:
212212
* Change examples to meet HQRM standards and optin to Example validation
213213
tests.
214214
* Replaced examples in README.MD to links to Example files.
215+
* Added the VS Code PowerShell extension formatting settings that cause PowerShell.
216+
files to be formatted as per the DSC Resource kit style guidelines - [Issue #91](https://github.com/PowerShell/xComputerManagement/issues/91).
217+
* Opted into Common Tests 'Validate Module Files' and 'Validate Script Files'.
218+
* Converted files with UTF8 with BOM over to UTF8 - fixes [Issue #90](https://github.com/PowerShell/xComputerManagement/issues/90).
219+
* Updated Year to 2017 in License and Manifest - fixes [Issue #87](https://github.com/PowerShell/xComputerManagement/issues/87).
220+
* Added .github support files - fixes [Issue #88](https://github.com/PowerShell/xComputerManagement/issues/88):
221+
* CONTRIBUTING.md
222+
* ISSUE_TEMPLATE.md
223+
* PULL_REQUEST_TEMPLATE.md
215224

216225
### 2.0.0.0
217226

0 commit comments

Comments
 (0)