Skip to content

Commit 730f479

Browse files
jrkbjrkb
authored andcommitted
Add gitignore and vscode build, test, and lint tasks configuration
1 parent ee86b51 commit 730f479

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
web-ext-artifacts/
2+
.git/
3+
.DS_Store

.vscode/tasks.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "Build",
8+
"type": "shell",
9+
"command": "web-ext build"
10+
},
11+
{
12+
"label": "Test",
13+
"type": "shell",
14+
"command": "web-ext run"
15+
},
16+
{
17+
"label": "Lint",
18+
"type": "shell",
19+
"command": "web-ext lint"
20+
},
21+
]
22+
}

0 commit comments

Comments
 (0)