tulz
Version:
A lightweight CLI tool for codebase analysis and aggregation - perfect for slow machines and text editor workflows
29 lines (26 loc) • 443 B
JavaScript
// Configuração centralizada para a Tuls CLI
const DEFAULT_IGNORE_DIRS = [
'.venv',
'.git',
'node_modules',
'dist'
];
const DEFAULT_IGNORE_FILES = [
'.DS_Store',
'package-lock.json'
];
const DEFAULT_IGNORE_EXTENSIONS = [
'.png',
'.jpg',
'.gif',
'.svg',
'.txt',
'.md',
'.pdf',
'.cjs'
];
module.exports = {
DEFAULT_IGNORE_DIRS,
DEFAULT_IGNORE_FILES,
DEFAULT_IGNORE_EXTENSIONS
};