/*! * 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-use-before-define": "off", "@typescript-eslint/strict-boolean-expressions": "off", "keyword-spacing": "off", "no-case-declarations": "off", "prefer-arrow/prefer-arrow-functions": "off", "unicorn/no-useless-spread": "off", }, }, ]; export default config;