10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
/** @type {import("eslint").Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
extends: ["@unsend/eslint-config/next.js"],
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
project: true,
|
|
},
|
|
};
|