-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from techthoughts2/Enhancements
Enhancements
- Loading branch information
Showing
78 changed files
with
1,874 additions
and
932 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
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,18 @@ | ||
# Security Policy | ||
|
||
## Reporting a Vulnerability | ||
|
||
<!--- Use this section to tell people how to report a vulnerability. | ||
Tell them where to go, how often they can expect to get an update on a reported vulnerability, what to expect if the vulnerability is accepted or declined, etc. --> | ||
|
||
If you discover a vulnerability in pwshPlaces, please follow the _following process_: | ||
|
||
1. Open a generic bug issue advising you have discovered a vulnerability. | ||
- Avoid sharing specifics or details of the vulnerability in an open GitHub issue. | ||
2. A repo owner will reach out to you to establish a private form of communication. | ||
3. We will evaluate the vulnerability and, if necessary, release a fix or mitigating steps to address it. We will contact you to let you know the outcome, and will credit you in the report. | ||
|
||
Please **do not disclose the vulnerability publicly** until a fix is released! | ||
|
||
4. Once we have either a) published a fix, or b) declined to address the vulnerability for whatever reason, you are free to publicly disclose it. |
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
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
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
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
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
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,25 @@ | ||
# https://docs.readthedocs.io/en/stable/config-file/index.html | ||
|
||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
|
||
mkdocs: | ||
configuration: mkdocs.yml | ||
|
||
python: | ||
install: | ||
- requirements: docs/requirements.txt | ||
|
||
# # Build PDF & ePub | ||
formats: all | ||
# - epub | ||
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 |
---|---|---|
@@ -1,9 +1,56 @@ | ||
{ | ||
"markdownlint.config": { | ||
"default": true, | ||
"MD007": { | ||
"indent": 4 | ||
}, | ||
"no-hard-tabs": false | ||
}, | ||
// When enabled, will trim trailing whitespace when you save a file. | ||
"files.trimTrailingWhitespace": true, | ||
// specifies the location of the explicity ScriptAnalyzer settings file | ||
"powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1", | ||
// specifies the PowerShell coding style used in this project (https://github.com/PoshCode/PowerShellPracticeAndStyle/issues/81) | ||
"powershell.codeFormatting.preset":"Stroustrup" | ||
"powershell.codeFormatting.preset":"Stroustrup", | ||
"cSpell.enableFiletypes": [ | ||
"!yaml", | ||
"powershell" | ||
], | ||
"cSpell.words": [ | ||
"Alanui", | ||
"Braunfels", | ||
"Castell", | ||
"Clixml", | ||
"Eastlake", | ||
"findplacefromtext", | ||
"Geocode", | ||
"geocoded", | ||
"geocoder", | ||
"Geocodes", | ||
"Granzin's", | ||
"inputtype", | ||
"jakemorrison", | ||
"Krause's", | ||
"latlng", | ||
"locationbias", | ||
"maxprice", | ||
"minprice", | ||
"Moriyama", | ||
"nearbysearch", | ||
"opennow", | ||
"pagetoken", | ||
"phme", | ||
"phonenumber", | ||
"pwsh", | ||
"Queeney", | ||
"rankby", | ||
"Rqst", | ||
"sessiontoken", | ||
"succcessful", | ||
"textquery", | ||
"textsearch", | ||
"Wailea", | ||
"Yxhme" | ||
] | ||
} | ||
|
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
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
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
Oops, something went wrong.