Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const nextConfig = require("eslint-config-next");
const prettierConfig = require("eslint-config-prettier");

/** @type {import("eslint").Linter.Config[]} */
Copy link

Copilot AI Apr 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

eslint.config.js is a flat-config file, but the JSDoc uses import("eslint").Linter.Config[] (legacy eslintrc config type). Update this to the flat-config type (e.g., Linter.FlatConfig[]) to avoid incorrect editor/TS typing for this file.

Suggested change
/** @type {import("eslint").Linter.Config[]} */
/** @type {import("eslint").Linter.FlatConfig[]} */

Copilot uses AI. Check for mistakes.
module.exports = [...nextConfig, prettierConfig];
32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading