Run lint only in src directory

This commit is contained in:
Josh Gross
2023-03-15 16:09:14 -04:00
parent 28a4438faf
commit b320e92f5a
+2 -2
View File
@@ -32,8 +32,8 @@
"clean": "rimraf dist",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint **/*.ts",
"lint-fix": "eslint --fix **/*.ts",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"prepublishOnly": "npm run build && npm run test",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test-watch": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --watch",