@fluidframework/eslint-config-fluid
Version:
Shareable ESLint config for the Fluid Framework
21 lines (19 loc) • 500 B
JavaScript
/*!
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
* Licensed under the MIT License.
*/
/**
* "Strict" Biome-compatible eslint configuration.
*
* This configuration is the same as the "strict" config, but disables rules that are handled by biome, which allows
* projects to use both biome and eslint without conflicting rules.
*/
module.exports = {
env: {
browser: true,
es6: true,
es2024: false,
node: true,
},
extends: ["./strict.js", "biome"],
};