Skip to content

Commit 22f870e

Browse files
committed
updating gitignore
1 parent a792070 commit 22f870e

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.gitignore

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,13 @@ node_modules
4949
testing-code-3.js
5050
testing-scribling-code.js
5151
testing-code-1.js
52-
Cracking-The-Coding-Interview-Note-Gitignore-IT.odt
52+
Cracking-The-Coding-Interview-Note-Gitignore-IT.odt
53+
54+
55+
#ignore file name ending in "-bkp.js" OR "-bkp.ts" OR "-bkp.py" OR "-test.js" OR "-test.ts" OR "-test.py" in its name. So I will have to put "-test.js" at all files that is just for my development-time random testing code .
56+
**/*-bkp.js
57+
**/*-bkp.ts
58+
**/*-bkp.py
59+
**/*-test.js
60+
**/*-test.ts
61+
**/*-test.py

.vscode/settings.json

100644100755
File mode changed.

First_Reverse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Use the Parameter Testing feature in the box below to test your code with different arguments.
44
*/
5-
*
5+
66
function FirstReverse(str) {
77
var reverse = '';
88
for(var i = str.length - 1; i >= 0; i--)

meanMode.js

100644100755
File mode changed.

0 commit comments

Comments
 (0)