From 1ad219c818add8d53758e4109cf032c6f61f0fc3 Mon Sep 17 00:00:00 2001 From: Abhijeet Prasad Date: Wed, 8 Jul 2026 17:37:25 -0400 Subject: [PATCH] chore: Ignore readme with formatting --- README.md | 7 +++---- vite.config.ts | 7 ++++++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 78c5777..c153100 100644 --- a/README.md +++ b/README.md @@ -35,10 +35,9 @@ jobs: runtime: node ``` - - -> [!IMPORTANT] You must specify `permissions` for the action to leave comments -> on your PR. Without these permissions, you'll see GitHub API errors. +> [!IMPORTANT] +> You must specify `permissions` for the action to leave comments on your PR. +> Without these permissions, you'll see GitHub API errors. ## Inputs diff --git a/vite.config.ts b/vite.config.ts index 001316f..0734c7c 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -16,7 +16,12 @@ export default defineConfig({ htmlWhitespaceSensitivity: "css", endOfLine: "lf", sortPackageJson: false, - ignorePatterns: ["**/dist/", "**/node_modules/", "**/coverage/"], + ignorePatterns: [ + "**/dist/", + "**/node_modules/", + "**/coverage/", + "README.md", + ], }, lint: { ignorePatterns: ["**/dist/**", "**/node_modules/**", "**/coverage/**"],