32 lines
778 B
JavaScript
32 lines
778 B
JavaScript
import { defineConfig, globalIgnores } from 'eslint/config';
|
|
import nextVitals from 'eslint-config-next/core-web-vitals';
|
|
import nextTs from 'eslint-config-next/typescript';
|
|
import eslintConfigPrettier from 'eslint-config-prettier';
|
|
import * as mdx from 'eslint-plugin-mdx';
|
|
|
|
const eslintConfig = defineConfig([
|
|
...nextVitals,
|
|
...nextTs,
|
|
{
|
|
files: ['**/*.mdoc', '**/*.markdoc'],
|
|
plugins: {
|
|
mdx: mdx,
|
|
},
|
|
processor: 'mdx/remark',
|
|
rules: {
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
},
|
|
},
|
|
// Override default ignores of eslint-config-next.
|
|
globalIgnores([
|
|
// Default ignores of eslint-config-next:
|
|
'.next/**',
|
|
'out/**',
|
|
'build/**',
|
|
'next-env.d.ts',
|
|
]),
|
|
eslintConfigPrettier,
|
|
]);
|
|
|
|
export default eslintConfig;
|