-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c2b2a47
Showing
11 changed files
with
1,368 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = crlf | ||
insert_final_newline = true | ||
indent_style = space | ||
|
||
[*.{psd1,psm1,ps1}] | ||
charset = utf-8-bom | ||
indent_size = 4 | ||
|
||
[*.yml] | ||
indent_size = 2 | ||
|
||
[.github/**] | ||
end_of_line = lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
# Describe the bug | ||
|
||
A clear and concise description of what the bug is. | ||
|
||
# To Reproduce | ||
|
||
Steps to reproduce the behavior: | ||
|
||
1. Run Cmdlet '…' | ||
2. See error | ||
|
||
# Expected behavior | ||
|
||
A clear and concise description of what you expected to happen. | ||
|
||
# Environment | ||
|
||
- OS: [e.g. Windows 10 1909] | ||
- PowerShell: [evaluate `$PSVersionTable`] | ||
- Version: [e.g. 3.0] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
name: Question | ||
about: Go to the Gitter for questions | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
Ask questions on the Gitter! Go to https://gitter.im/powershell-code-page/community. | ||
|
||
Don't create issues for questions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: install | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test-powershell: | ||
name: Install it on Windows | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
with: | ||
path: code-page | ||
- name: Install it | ||
shell: pwsh | ||
run: | | ||
$ErrorActionPreference = 'Stop' | ||
Import-Module .\code-page |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: lint | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
lint: | ||
name: Lint by PSScriptAnalyzer | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Install PSScriptAnalyzer | ||
shell: pwsh | ||
run: | | ||
$ErrorActionPreference = 'Stop' | ||
Install-Module PSScriptAnalyzer -Force | ||
- name: Lint | ||
shell: pwsh | ||
run: | | ||
$ErrorActionPreference = 'Stop' | ||
Import-Module PSScriptAnalyzer | ||
Invoke-ScriptAnalyzer . -Recurse -Severity Information -EnableExit |
Oops, something went wrong.