Merge pull request #17545 from storybookjs/17542-turn-on-eslint

Build: Give linting sub-commands a directory to run against
This commit is contained in:
Michael Shilman 2022-03-07 23:31:09 +08:00 committed by GitHub
commit 7c87145792
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,9 +62,9 @@
"generate-repros": "zx scripts/repros-generator/index.mjs",
"github-release": "github-release-from-changelog",
"linear-export": "ts-node --project=./scripts/tsconfig.json ./scripts/linear-export.ts",
"lint": "yarn lint:js . && yarn lint:md .",
"lint:js": "cross-env NODE_ENV=production eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.json,.html,.ts,.tsx,.mjs --report-unused-disable-directives",
"lint:md": "remark -q",
"lint": "yarn lint:js && yarn lint:md",
"lint:js": "cross-env NODE_ENV=production eslint . --cache --cache-location=.cache/eslint --ext .js,.jsx,.json,.html,.ts,.tsx,.mjs --report-unused-disable-directives",
"lint:md": "remark -q .",
"lint:package": "sort-package-json",
"local-registry": "ts-node --project=./scripts/tsconfig.json ./scripts/run-registry.ts ",
"publish:debug": "npm run publish:latest -- --npm-tag=debug --no-push",