We upgraded ESLint to version 9 in the y-provider server, which includes several improvements and fixes. This change also involves updating the ESLint configuration files to the new format and ensuring compatibility with the latest ESLint features.
27 lines
553 B
JavaScript
27 lines
553 B
JavaScript
import { defineConfig } from '@eslint/config-helpers';
|
|
import docsPlugin from 'eslint-plugin-docs';
|
|
|
|
const eslintConfig = defineConfig([
|
|
{
|
|
ignores: ['dist/**'],
|
|
},
|
|
{
|
|
files: ['**/*.mjs', '**/*.ts', '**/*.tsx'],
|
|
plugins: {
|
|
docs: docsPlugin,
|
|
},
|
|
extends: ['docs/next'],
|
|
languageOptions: {
|
|
parserOptions: {
|
|
tsconfigRootDir: import.meta.dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
},
|
|
rules: {
|
|
'@next/next/no-html-link-for-pages': 'off',
|
|
},
|
|
},
|
|
]);
|
|
|
|
export default eslintConfig;
|