@shayanthenerd/eslint-config
Version:
A modern, flexible ESLint configuration for enforcing best practices and maintaining a consistent coding style
61 lines (60 loc) • 1.12 kB
JavaScript
//#region src/helpers/ignores/defaultIgnorePatterns.ts
const defaultIgnorePatterns = [
"**/*.min.*",
"**/jspm_packages",
"**/pnpm-lock.yaml",
"**/bower_components",
"**/package-lock.json",
"**/typegen.d.ts",
"**/next-env.d.ts",
"**/components.d.ts",
"**/routeTree.gen.ts",
"**/eslint-typegen.d.ts",
"**/auto-import?(s).d.ts",
"**/out",
"**/dist",
"**/build",
"**/.data",
"**/public",
"**/output",
"**/.output",
"**/.serverless",
"**/.eslint-config-inspector",
"**/tmp",
"**/.tmp",
"**/.npm",
"**/temp",
"**/.temp",
"**/cache",
"**/.cache",
"**/deno_dir",
"**/.parcel-cache",
"**/*.lerna_backup",
"**/.postcss-cache",
"**/.vitepress/cache",
"**/vite.config.*.timestamp-*",
"**/.nx",
"**/.vite",
"**/.yarn",
"**/.nuxt",
"**/.next",
"**/.astro",
"**/.vitest",
"**/.vercel",
"**/.svelte-kit",
"**/.vite-inspect",
"**/coverage",
"**/_fixtures",
"**/.nyc_output",
"**/__snapshots__",
"**/.idea",
"**/.fleet",
"**/.history",
"**/.DS_Store",
"**/LICENSE*",
"**/CHANGELOG*.md",
"**/CODEOWNERS.md",
"**/CODE_OF_CONDUCT.md"
];
//#endregion
export { defaultIgnorePatterns };