This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
LoredMarkdown/eslint.config.js
Gustavo "Guz" L. de Mello 08b66076f6 chore: 🔧 ignore test files
2024-01-16 18:58:00 -03:00

12 lines
281 B
JavaScript

import { configs, defineConfig, presets } from '@eslegant/js';
export default defineConfig([
{
ignores: ['**/*.svg.js', '**/*/test.*'],
},
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
...presets.strict,
configs.environments.node.strict.default,
]);