forked from akai/readest
26 lines
635 B
JavaScript
26 lines
635 B
JavaScript
import path from 'node:path';
|
|
import js from '@eslint/js';
|
|
import jsxA11y from 'eslint-plugin-jsx-a11y';
|
|
import { fileURLToPath } from 'node:url';
|
|
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 [
|
|
...compat.extends('next/core-web-vitals', 'next/typescript'),
|
|
{
|
|
plugins: {
|
|
'jsx-a11y': jsxA11y,
|
|
},
|
|
rules: {
|
|
...jsxA11y.configs.recommended.rules,
|
|
},
|
|
},
|
|
];
|