Files
fcc-review-generator/eslint.config.js
T
naomi f1419563fa
Node.js CI / Lint and Test (push) Failing after 1m0s
fix: disable linting on the order object declaration
2025-10-08 10:46:44 -07:00

12 lines
259 B
JavaScript

import NaomisConfig from '@nhcarrigan/eslint-config';
export default [
...NaomisConfig,
{
rules: {
"no-console" : "off",
"no-await-in-loop": "off",
"comments/no-unlimited-disable": "off",
}
}
];