Skip to content

Commit b2aa900

Browse files
committed
Add linter command to makefile
1 parent e5b6d63 commit b2aa900

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
all: straight-to-web.xpi
22

33
straight-to-web.xpi: *.js manifest.json
4-
zip -r -FS ./straight-to-web.xpi * --exclude '*.git*' --exclude '*~' --exclude '.*' --exclude 'Makefile' --exclude 'README'
4+
zip -r -FS ./straight-to-web.xpi * --exclude '*.git*' --exclude '*~' --exclude '.*' --exclude 'Makefile' --exclude '*.md'
55

6+
.PHONY: lint
7+
8+
lint:
9+
web-ext lint
610

711
.PHONY: clean
812
clean:

0 commit comments

Comments
 (0)