@itwin/geo-tools-react
Version:
React Geospatial Tools
29 lines (26 loc) • 828 B
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
import iTwinPlugin from "@itwin/eslint-plugin";
export default [
{
files: ["**/*.{ts,tsx}"],
...iTwinPlugin.configs.uiConfig,
rules: {
"@itwin/no-internal": [
"warn",
{
tag: [
"internal",
"alpha",
"beta",
],
},
],
"@typescript-eslint/unbound-method": "off",
"no-duplicate-imports": "off",
"@typescript-eslint/consistent-type-imports": "error",
},
},
];