Skip to content

Commit 1eb53f0

Browse files
Merge pull request #2 from psustevens/master
Updates to vVolsReadinessChecker
2 parents 87373ce + b686362 commit 1eb53f0

File tree

4 files changed

+686
-544
lines changed

4 files changed

+686
-544
lines changed

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Visual Studio Code bits to ignore
2+
.vscode/*
3+
!.vscode/settings.json
4+
!.vscode/launch.json
5+
6+
# Local History for Visual Studio Code
7+
.history
8+
9+
# Windows files
10+
Thumbs.db
11+
*.lnk
12+
$RECYCLE.BIN/
13+
14+
# MacOS files
15+
.DS_Store

.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "PowerShell: Launch Current File",
9+
"type": "PowerShell",
10+
"request": "launch",
11+
"script": "${file}",
12+
"args": []
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)