Skip to content

Commit a2324b7

Browse files
committed
fix cli args for eslint
1 parent 22e109c commit a2324b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

javascript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"scripts": {
1717
"build": "tsc --build tsconfig.build.json",
1818
"clean": "rm -rf dist",
19-
"fix": "eslint --ext ts --max-warnings 0 --fix src && prettier --write src",
20-
"lint": "eslint --ext ts --max-warnings 0 && prettier --check src",
19+
"fix": "eslint --ext ts --max-warnings 0 src --fix src && prettier --write src",
20+
"lint": "eslint --ext ts --max-warnings 0 src && prettier --check src",
2121
"test": "mocha 'src/**/*.spec.*'",
2222
"prepublishOnly": "tsc --build tsconfig.build.json"
2323
},

0 commit comments

Comments
 (0)