| 12345678910111213141516 |
- // @ts-check
- import nextPlugin from '@next/eslint-plugin-next';
- import react from './react.js';
- /** @type {import('eslint').Linter.Config[]} */
- export default [
- ...react,
- {
- files: ['**/*.{ts,tsx,jsx}'],
- plugins: { '@next/next': nextPlugin },
- rules: {
- ...nextPlugin.configs.recommended.rules,
- ...nextPlugin.configs['core-web-vitals'].rules,
- },
- },
- ];
|