/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ module.exports = { extends: [ require.resolve("@fluidframework/eslint-config-fluid/minimal-deprecated"), "prettier", ], parserOptions: { project: ["./tsconfig.json", "./src/test/tsconfig.json"], }, rules: { "promise/catch-or-return": ["error", { allowFinally: true }], // TODO: remove these overrides and fix violations "@typescript-eslint/prefer-nullish-coalescing": "off", "@typescript-eslint/strict-boolean-expressions": "off", // TODO: remove usages of deprecated APIs and remove this override "import/no-deprecated": "warn", }, };