Fix linting errors, take two

This commit is contained in:
Michael Shilman 2022-08-22 22:56:15 +08:00
parent 07f8ad4397
commit 69d62e4057
4 changed files with 0 additions and 130 deletions

View File

@ -1,2 +1 @@
export * from '@storybook/react';
export * from './types';

View File

@ -1,64 +0,0 @@
export * from '@storybook/core-vite';
// import type {
// StorybookConfig as StorybookConfigBase,
// TypescriptOptions as TypescriptOptionsBase,
// } from '@storybook/core-vite';
// export type { BuilderResult } from '@storybook/core-vite';
// type FrameworkName = '@storybook/react-vite';
// type BuilderName = '@storybook/builder-vite';
// export interface FrameworkOptions {
// fastRefresh?: boolean;
// strictMode?: boolean;
// /**
// * Use React's legacy root API to mount components
// * @description
// * React has introduced a new root API with React 18.x to enable a whole set of new features (e.g. concurrent features)
// * If this flag is true, the legacy Root API is used to mount components to make it easier to migrate step by step to React 18.
// * @default false
// */
// legacyRootApi?: boolean;
// }
// type StorybookConfigFramework = {
// framework:
// | FrameworkName
// | {
// name: FrameworkName;
// options: FrameworkOptions;
// };
// core?: StorybookConfigBase['core'] & {
// builder?:
// | BuilderName
// | {
// name: BuilderName;
// options: BuilderOptions;
// };
// };
// typescript?: Partial<TypescriptOptionsBuilder & TypescriptOptionsReact> &
// StorybookConfigBase['typescript'];
// };
// export type TypescriptOptions = TypescriptOptionsBase & {
// /**
// * Sets the type of Docgen when working with React and TypeScript
// *
// * @default `'react-docgen-typescript'`
// */
// reactDocgen: 'react-docgen-typescript' | 'react-docgen' | false;
// /**
// * Configures `react-docgen-typescript-plugin`
// *
// * @default
// * @see https://github.com/storybookjs/storybook/blob/next/lib/builder-webpack5/src/config/defaults.js#L4-L6
// */
// reactDocgenTypescriptOptions: ReactDocgenTypescriptOptions;
// };
// export type StorybookConfig<TWebpackConfiguration = WebpackConfigurationBase> =
// StorybookConfigBase<TWebpackConfiguration> & {
// typescript?: Partial<TypescriptOptions>;
// };

View File

@ -1,2 +1 @@
export * from '@storybook/vue3';
export * from './types';

View File

@ -1,64 +0,0 @@
export * from '@storybook/core-vite';
// import type {
// StorybookConfig as StorybookConfigBase,
// TypescriptOptions as TypescriptOptionsBase,
// } from '@storybook/core-vite';
// export type { BuilderResult } from '@storybook/core-vite';
// type FrameworkName = '@storybook/react-vite';
// type BuilderName = '@storybook/builder-vite';
// export interface FrameworkOptions {
// fastRefresh?: boolean;
// strictMode?: boolean;
// /**
// * Use React's legacy root API to mount components
// * @description
// * React has introduced a new root API with React 18.x to enable a whole set of new features (e.g. concurrent features)
// * If this flag is true, the legacy Root API is used to mount components to make it easier to migrate step by step to React 18.
// * @default false
// */
// legacyRootApi?: boolean;
// }
// type StorybookConfigFramework = {
// framework:
// | FrameworkName
// | {
// name: FrameworkName;
// options: FrameworkOptions;
// };
// core?: StorybookConfigBase['core'] & {
// builder?:
// | BuilderName
// | {
// name: BuilderName;
// options: BuilderOptions;
// };
// };
// typescript?: Partial<TypescriptOptionsBuilder & TypescriptOptionsReact> &
// StorybookConfigBase['typescript'];
// };
// export type TypescriptOptions = TypescriptOptionsBase & {
// /**
// * Sets the type of Docgen when working with React and TypeScript
// *
// * @default `'react-docgen-typescript'`
// */
// reactDocgen: 'react-docgen-typescript' | 'react-docgen' | false;
// /**
// * Configures `react-docgen-typescript-plugin`
// *
// * @default
// * @see https://github.com/storybookjs/storybook/blob/next/lib/builder-webpack5/src/config/defaults.js#L4-L6
// */
// reactDocgenTypescriptOptions: ReactDocgenTypescriptOptions;
// };
// export type StorybookConfig<TWebpackConfiguration = WebpackConfigurationBase> =
// StorybookConfigBase<TWebpackConfiguration> & {
// typescript?: Partial<TypescriptOptions>;
// };