Skip to content

Commit

Permalink
ci: add eslint ignore pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
StarHeartHunt committed Dec 25, 2023
1 parent f14c722 commit f0d6093
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,36 @@ module.exports = {
"import/no-unresolved": ["error", { ignore: ["^virtual:"] }],
"no-console": ["error", { allow: ["warn", "error"] }],
},
ignorePatterns: [
"**/node_modules",
"**/dist",
"**/package-lock.json",
"**/yarn.lock",
"**/pnpm-lock.yaml",
"**/bun.lockb",

"**/output",
"**/coverage",
"**/temp",
"**/.temp",
"**/tmp",
"**/.tmp",
"**/.history",
"**/.vitepress/cache",
"**/.nuxt",
"**/.next",
"**/.vercel",
"**/.changeset",
"**/.idea",
"**/.cache",
"**/.output",
"**/.vite-inspect",

"**/CHANGELOG*.md",
"**/*.min.*",
"**/LICENSE*",
"**/__snapshots__",
"**/auto-import?(s).d.ts",
"**/components.d.ts",
],
};

0 comments on commit f0d6093

Please sign in to comment.