-
-
Notifications
You must be signed in to change notification settings - Fork 42
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
Showing
52 changed files
with
3,108 additions
and
510 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,3 @@ | ||
# https://help.github.com/articles/about-codeowners/ | ||
|
||
* @atlassianps/maintainers @atlassianps/reviewers |
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 @@ | ||
# Contributing to AtlassianPS Homepage | ||
|
||
Happy to see you are interested in helping. | ||
|
||
We have a comprehensive documentation on how to contribute here: **[Contributing to AtlassianPS](https://atlassianps.org/docs/contributing/)**. | ||
|
||
But here is the gist of it once you have forked the repository: | ||
|
||
* before changing the code | ||
```powershell | ||
git clone https://github.com/<YOUR GITHUB USER>/ConfluencePS | ||
cd ConfluencePS | ||
# git checkout develop # not applicable for this repository | ||
git checkout -b <NAME FOR YOUR FEATURE> | ||
code . | ||
``` | ||
|
||
* after making the changes | ||
```powershell | ||
git add . | ||
git commit -m "<A MESSAGE ABOUT THE CHANGES>" | ||
git push | ||
``` | ||
|
||
* [Creating a Pull Request](https://help.github.com/articles/creating-a-pull-request/) |
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 |
---|---|---|
@@ -1,16 +1,35 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"files.encoding": "utf8", | ||
"files.eol": "\r\n", | ||
"files.trimTrailingWhitespace": true, | ||
"files.encoding": "utf8", | ||
"files.insertFinalNewline": true, | ||
"files.trimTrailingWhitespace": true, | ||
"files.defaultLanguage": "powershell", | ||
"editor.tabSize": 4, | ||
"editor.insertSpaces": true, | ||
"search.exclude": { | ||
"./Release": true | ||
}, | ||
"files.watcherExclude": { | ||
"./Release": true | ||
}, | ||
"powershell.codeFormatting.ignoreOneLineBlock": true, | ||
"powershell.codeFormatting.openBraceOnSameLine": true, | ||
"powershell.codeFormatting.newLineAfterOpenBrace": false, | ||
"powershell.codeFormatting.newLineAfterCloseBrace": true, | ||
"powershell.codeFormatting.whitespaceBeforeOpenBrace": true, | ||
"powershell.codeFormatting.whitespaceBeforeOpenParen": true, | ||
"powershell.codeFormatting.whitespaceAroundOperator": true, | ||
"powershell.codeFormatting.whitespaceAfterSeparator": true, | ||
"powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1", | ||
"[markdown]": { | ||
"editor.wordwrap": "on", | ||
"editor.tabSize": 2, | ||
"editor.wordWrap": "on", | ||
"editor.renderWhitespace": "all", | ||
"editor.acceptSuggestionOnEnter": false, | ||
"editor.rulers": [80], | ||
"editor.acceptSuggestionOnEnter": "off", | ||
"editor.trimAutoWhitespace": false | ||
}, | ||
} | ||
"[yaml]": { | ||
"editor.tabSize": 2 | ||
} | ||
} |
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.