11 lines
152 B
JavaScript
11 lines
152 B
JavaScript
import { nextConfig } from "@mintel/eslint-config/next";
|
|
|
|
export default [
|
|
...nextConfig,
|
|
{
|
|
rules: {
|
|
"no-console": "warn",
|
|
},
|
|
},
|
|
];
|