Skip to content

Commit 3d79c9d

Browse files
committed
add file paths to lint and fix scripts
1 parent 2c57d49 commit 3d79c9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

google-analytics-admin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"scripts": {
1313
"lint": "eslint ./*.js",
14-
"fix": "eslint --fix",
14+
"fix": "eslint ./*.js --fix",
1515
"test": "c8 mocha --timeout 600000 test/*.js"
1616
},
1717
"dependencies": {

google-analytics-data/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"*.js"
1111
],
1212
"scripts": {
13-
"lint": "eslint ./*.js",
14-
"fix": "eslint --fix",
13+
"lint": "eslint ./*.js ./test/*.js",
14+
"fix": "eslint ./*.js ./test/*.js --fix",
1515
"test": "c8 mocha --timeout 600000 test/*.js"
1616
},
1717
"dependencies": {

0 commit comments

Comments
 (0)