43 lines
925 B
JavaScript
43 lines
925 B
JavaScript
const { resolve } = require("node:path");
|
|
|
|
const project = resolve(process.cwd(), "tsconfig.json");
|
|
|
|
/*
|
|
* This is a custom ESLint configuration for use with
|
|
* Next.js apps.
|
|
*
|
|
* This config extends the Vercel Engineering Style Guide.
|
|
* For more information, see https://github.com/vercel/style-guide
|
|
*
|
|
*/
|
|
|
|
module.exports = {
|
|
extends: [
|
|
"@vercel/style-guide/eslint/node",
|
|
"@vercel/style-guide/eslint/browser",
|
|
"@vercel/style-guide/eslint/typescript",
|
|
"@vercel/style-guide/eslint/react",
|
|
"@vercel/style-guide/eslint/next",
|
|
"eslint-config-turbo",
|
|
].map(require.resolve),
|
|
parserOptions: {
|
|
project,
|
|
},
|
|
globals: {
|
|
React: true,
|
|
JSX: true,
|
|
},
|
|
settings: {
|
|
"import/resolver": {
|
|
typescript: {
|
|
project,
|
|
},
|
|
},
|
|
},
|
|
ignorePatterns: ["node_modules/", "dist/"],
|
|
// add rules configurations here
|
|
rules: {
|
|
"import/no-default-export": "off",
|
|
},
|
|
};
|