/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { Linter } from "eslint"; import { strict } from "@fluidframework/eslint-config-fluid/flat.mts"; const config: Linter.Config[] = [ ...strict, { files: ["src/test/*.spec.ts"], rules: { "prefer-arrow-callback": "off", }, }, ]; export default config;