/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { Linter } from "eslint"; import { recommended } from "@fluidframework/eslint-config-fluid/flat.mts"; const config: Linter.Config[] = [ ...recommended, { rules: { "@typescript-eslint/no-shadow": "off", }, }, { files: ["*.spec.ts", "src/test/**"], rules: { "import-x/no-nodejs-modules": [ "error", { "allow": ["node:assert", "node:path"], }, ], }, }, ]; export default config;