Skip to content

Commit 05ca25f

Browse files
authored
[JS] chore: do not ignore .vscode folder in JS samples (#852)
## Linked issues closes: #833 ## Details Update the `.gitignore` files to not ignore `.vscode` folder in JS samples. The `.vscode` folder contains VS Code settings which is necessary to local debug the JS samples using Teams Toolkit. Follow up: Sample owners need to push the missing `.vscode` folder for the samples. ## Attestation Checklist - [x] My code follows the style guidelines of this project - I have checked for/fixed spelling, linting, and other errors - I have commented my code for clarity - I have made corresponding changes to the documentation (we use [TypeDoc](https://typedoc.org/) to document our code) - My changes generate no new warnings - I have added tests that validates my changes, and provides sufficient test coverage. I have tested with: - Local testing - E2E testing in Teams - New and existing unit tests pass locally with my changes
1 parent 075ab1b commit 05ca25f

File tree

19 files changed

+1
-19
lines changed

19 files changed

+1
-19
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ pids
1717

1818
# Directory for instrumented libs generated by jscoverage/JSCover
1919
lib-cov
20-
/**/.vscode
2120
/**/lib
2221
lib
2322

js/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pids
2020

2121
# Directory for instrumented libs generated by jscoverage/JSCover
2222
lib-cov
23-
/**/.vscode
23+
/packages/**/.vscode
2424
/**/lib
2525
lib
2626

js/samples/01.messaging.a.echoBot/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pids
1919

2020
# Directory for instrumented libs generated by jscoverage/JSCover
2121
lib-cov
22-
/**/.vscode
2322
/**/lib
2423
lib
2524

js/samples/02.messageExtensions.a.searchCommand/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pids
1919

2020
# Directory for instrumented libs generated by jscoverage/JSCover
2121
lib-cov
22-
/**/.vscode
2322
/**/lib
2423
lib
2524

js/samples/03.adaptiveCards.a.typeAheadBot/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pids
1919

2020
# Directory for instrumented libs generated by jscoverage/JSCover
2121
lib-cov
22-
/**/.vscode
2322
/**/lib
2423
lib
2524

js/samples/04.ai.a.teamsChefBot/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pids
1919

2020
# Directory for instrumented libs generated by jscoverage/JSCover
2121
lib-cov
22-
/**/.vscode
2322
/**/lib
2423
lib
2524

js/samples/04.ai.b.messageExtensions.AI-ME/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pids
1919

2020
# Directory for instrumented libs generated by jscoverage/JSCover
2121
lib-cov
22-
/**/.vscode
2322
/**/lib
2423
lib
2524

js/samples/04.ai.c.actionMapping.lightBot/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pids
1919

2020
# Directory for instrumented libs generated by jscoverage/JSCover
2121
lib-cov
22-
/**/.vscode
2322
/**/lib
2423
lib
2524

js/samples/04.ai.d.chainedActions.listBot/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pids
1919

2020
# Directory for instrumented libs generated by jscoverage/JSCover
2121
lib-cov
22-
/**/.vscode
2322
/**/lib
2423
lib
2524

js/samples/04.ai.e.chainedActions.devOpsBot/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pids
1919

2020
# Directory for instrumented libs generated by jscoverage/JSCover
2121
lib-cov
22-
/**/.vscode
2322
/**/lib
2423
lib
2524

0 commit comments

Comments
 (0)