mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
12 lines
250 B
JavaScript
12 lines
250 B
JavaScript
/** @type {import("eslint").Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
extends: ["@repo/eslint-config/next.js"],
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
project: true,
|
|
},
|
|
ignorePatterns: [
|
|
"postcss.config.js",
|
|
]
|
|
};
|