Skip to content

Commit

Permalink
Updated PSRule options schema to v0.16.0 #68 (#69)
Browse files Browse the repository at this point in the history
- Updated PSRule options schema to v0.16.0 #68
- Update to latest package versions
  • Loading branch information
BernieWhite authored Apr 2, 2020
1 parent 4ed9989 commit faa1096
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 26 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Updated PSRule options schema to v0.16.0. [#68](https://github.com/BernieWhite/PSRule-vscode/issues/68)

## v0.11.0

What's changed since v0.10.0:
Expand Down
53 changes: 32 additions & 21 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
"publish": "vsce publish"
},
"dependencies": {
"vscode-languageclient": "^6.1.1"
"vscode-languageclient": "^6.1.3"
},
"extensionDependencies": [
"vscode.powershell",
Expand All @@ -121,12 +121,12 @@
"devDependencies": {
"@types/node": "~11.13.8",
"@types/vscode": "1.41.0",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"lodash": "^4.17.15",
"lodash": ">=4.17.15",
"markdown-it": "^8.4.2",
"minimist": "^1.2.5",
"minimist": ">=1.2.5",
"typescript": "^3.8.3",
"vsce": "^1.74.0",
"vscode-test": "^1.3.0"
Expand Down
11 changes: 11 additions & 0 deletions schemas/PSRule-options.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,17 @@
],
"default": "Detail"
},
"culture": {
"type": "array",
"title": "Culture",
"description": "One or more cultures to use for generating output. When multiple cultures are specified, the first matching culture will be used. By default, the current PowerShell culture is used.",
"items": {
"type": "string",
"description": "A culture for generating output.",
"minLength": 2
},
"uniqueItems": true
},
"encoding": {
"type": "string",
"title": "Encoding",
Expand Down

0 comments on commit faa1096

Please sign in to comment.