diff --git a/docs/guides/cloud/analytics.mdx b/docs/guides/cloud/analytics.mdx index 207c4984fd7..1f3e66c376c 100644 --- a/docs/guides/cloud/analytics.mdx +++ b/docs/guides/cloud/analytics.mdx @@ -18,10 +18,7 @@ time, run duration and visibility into tests suite size over time. alt="Cloud Analytics Runs Over Time Screenshot" /> -This report shows the number of runs your organization has recorded to Cypress -Cloud, broken down by the final status of the run. Each run represents a single -invocation of `cypress run --record` for this project, whether in CI or on a -local machine. +This report shows the number of runs your organization has recorded to Cypress Cloud, broken down by the final status of the run. Each run represents a singleinvocation of `cypress run --record` for this project, whether in CI or on a local machine. ### Filters diff --git a/package.json b/package.json index b340e5c79c8..9e4a87b7c58 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "lint:fix": "npm run lint:markdown:fix", "lint:markdown": "prettier --check '**/*.{md,mdx}'", "lint:markdown:fix": "prettier --write '**/*.{md,mdx}'", + "lint:staged": "prettier --write", "swizzle": "docusaurus swizzle", "deploy": "docusaurus deploy", "clear": "docusaurus clear", @@ -65,6 +66,6 @@ ] }, "lint-staged": { - "*.{js,css,md}": "prettier --write" + "*.{md,mdx}": "npm run lint:staged" } }