@storm-software/eslint
Version:
⚡ A package containing the base ESLint configuration used by Storm Software across many projects.
49 lines (47 loc) • 923 B
JavaScript
// src/utils/ignores.ts
var DEFAULT_IGNORES = [
"**/.git/**",
"**/node_modules/**",
"**/src/generators/**/files/**/*",
"**/dist/**",
"**/tmp/**",
"**/coverage/**",
"**/bench/**",
"**/__test__/**",
"**/__mocks__/**",
"**/__generated__/**",
"**/.wrangler/**",
"**/.docusaurus/**",
"**/.tamagui/**",
"**/tamagui.css",
"**/.nx/**",
"**/.next/**",
"**/.storm/**",
"**/workbox*.js",
"**/sw*.js",
"**/service-worker.js",
"**/fallback*.js",
"**/ios/**",
"**/.android/**",
"**/.DS_Store/**",
"**/Thumbs.db/**",
"**/.cspellcache",
"**/package-lock.*",
"**/npm-lock.*",
"**/pnpm-lock.*",
"**/pnpm-lock.*",
"**/bun.lockb",
"**/cargo.lock",
"**/next-env.d.ts",
"**/CODEOWNERS",
"**/yarn.lock",
"**/jest.config.js",
"**/jest.setup.js",
"**/jest.config.ts",
"**/jest.setup.ts",
"**/jest.config.json",
"**/jest.setup.json"
];
export {
DEFAULT_IGNORES
};