Skip to content

Commit 257cd30

Browse files
committed
Move contributor docs to new folder
1 parent 7cd3364 commit 257cd30

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.husky/pre-commit

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
set -x
12
# Store list of staged files before formatting
23
STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACMR)
34

@@ -7,6 +8,7 @@ npx lint-staged
78

89
# Check if there are any changes in previously staged files
910
UNSTAGED_CHANGES=0
11+
IFS=$'\n'
1012
for FILE in $STAGED_FILES; do
1113
if [ -f "$FILE" ] && git diff --quiet "$FILE"; then
1214
# No changes in this file

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ Please keep your PRs to a minimal number of changes. If a PR is large, try to sp
9393
### Testing
9494

9595
> [!NOTE]
96-
> For a detailed guide on how to write tests for the VS Code Swift extension, see [the guide about writing tests for the VS Code Swift extension](docs/contributor/writing-tests-for-vscode-swift.md).
96+
> For a detailed guide on how to write tests for the VS Code Swift extension, see [the guide about writing tests for the VS Code Swift extension](Contributor Documentation/writing-tests-for-vscode-swift.md).
9797
9898
Where possible any new feature should have tests that go along with it, to ensure it works and will continue to work in the future. When a PR is submitted one of the prerequisites for it to be merged is that all tests pass.
9999

100-
For information on levels of testing done in this extension, see the [test strategy](docs/contributor/test-strategy.md).
100+
For information on levels of testing done in this extension, see the [test strategy](Contributor Documentation/test-strategy.md).
101101

102102
To get started running tests first import the `testing-debug.code-profile` VS Code profile used by the tests. Run the `> Profiles: Import Profile...` command then `Select File` and pick `./.vscode/testing-debug.code-profile`.
103103

File renamed without changes.

docs/contributor/writing-tests-for-vscode-swift.md renamed to Contributor Documentation/writing-tests-for-vscode-swift.md

File renamed without changes.

0 commit comments

Comments
 (0)