chore(react): migrate to eslint, add prettier (#26633)

This commit is contained in:
Liam DeBeasi
2023-01-18 16:49:25 -05:00
committed by GitHub
parent 2dca54a457
commit b02190d71f
70 changed files with 4508 additions and 1002 deletions

View File

@ -1,3 +1,3 @@
import React from 'react';
import type React from 'react';
export type ReactComponentOrElement = React.ComponentClass<any, any> | React.FC<any> | JSX.Element;

View File

@ -1,7 +1,7 @@
import { AnimationBuilder } from '@ionic/core/components';
import type { AnimationBuilder } from '@ionic/core/components';
import { RouteAction } from './RouteAction';
import { RouterDirection } from './RouterDirection';
import type { RouteAction } from './RouteAction';
import type { RouterDirection } from './RouterDirection';
export interface RouteInfo<TOptions = any> {
id: string;