12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
import baseConfig from "@repo/core-eslint/base";
|
|
|
|
export default [
|
|
...baseConfig,
|
|
{
|
|
rules: {
|
|
// test utilities are intended to be used in test contexts
|
|
"no-console": "off",
|
|
},
|
|
},
|
|
];
|