import globals from 'globals'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; import js from '@eslint/js'; import { FlatCompat } from '@eslint/eslintrc'; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); const compat = new FlatCompat({ baseDirectory: __dirname, recommendedConfig: js.configs.recommended, allConfig: js.configs.all }); export default [ { ignores: [ '**/node_modules', '**/README.md', '**/COPYING', '**/scripts/', '**/assets' ] }, ...compat.extends('eslint:recommended'), { plugins: {}, languageOptions: { globals: { ...globals.node } }, rules: { 'no-mixed-spaces-and-tabs': 'off', 'no-unused-vars': [ 'error', { argsIgnorePattern: '^_', caughtErrorsIgnorePattern: '^_', destructuredArrayIgnorePattern: '^_', varsIgnorePattern: '^_', reportUsedIgnorePattern: true } ] } } ];