Skip to content

Commit

Permalink
style: fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
HeartSquared committed Dec 17, 2024
1 parent faba890 commit be750dc
Show file tree
Hide file tree
Showing 690 changed files with 1,475 additions and 1,397 deletions.
2 changes: 1 addition & 1 deletion docs/.storybook/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import path, { join, dirname } from 'path'
import path, { dirname, join } from 'path'
import type { StorybookConfig } from '@storybook/react-vite'
import { nodePolyfills } from 'vite-plugin-node-polyfills'

Expand Down
2 changes: 1 addition & 1 deletion docs/.storybook/preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import './preview.css'

import React, { useEffect } from 'react'
import { decorators as bgDecorators } from '@storybook/addon-backgrounds/preview'
import { Decorator, Preview } from '@storybook/react'
import { type Decorator, type Preview } from '@storybook/react'
import { KaizenProvider } from '~components/KaizenProvider'
import { I18nProvider } from '~components/__react-aria-components__'
import { ReversedColors } from '~components/__utilities__/v3'
Expand Down
2 changes: 1 addition & 1 deletion docs/components/DocsContainer/BackToTop/BackToTop.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { HTMLAttributes, useLayoutEffect } from 'react'
import React, { useLayoutEffect, type HTMLAttributes } from 'react'

export const BackToTop = ({
children,
Expand Down
4 changes: 2 additions & 2 deletions docs/components/DocsContainer/DefaultDocsContainer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useContext } from 'react'
import { DocsContainer, DocsContainerProps, DocsContext } from '@storybook/blocks'
import { DocsContainer, DocsContext, type DocsContainerProps } from '@storybook/blocks'
import { BackToTop } from './BackToTop'
import { Content, Main, DocsWrapper } from './Layout'
import { Content, DocsWrapper, Main } from './Layout'

type LayoutProps = { children: React.ReactNode }

Expand Down
2 changes: 1 addition & 1 deletion docs/components/DocsContainer/Layout/Layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { ReactNode } from 'react'
import React, { type ReactNode } from 'react'
import styles from './Layout.module.scss'

export const Main = ({ children }: { children: ReactNode }): JSX.Element => (
Expand Down
2 changes: 1 addition & 1 deletion docs/components/DosAndDonts/DosAndDonts.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { HTMLAttributes } from 'react'
import React, { type HTMLAttributes } from 'react'
import { Canvas, Unstyled } from '@storybook/blocks'
import classnames from 'classnames'
import { Text } from '~components/Text'
Expand Down
2 changes: 1 addition & 1 deletion docs/components/LinkTo/LinkTo.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { HTMLAttributes } from 'react'
import React, { type HTMLAttributes } from 'react'
import { linkTo } from '@storybook/addon-links'
import classnames from 'classnames'

Expand Down
2 changes: 1 addition & 1 deletion docs/components/NoClipCanvas/NoClipCanvas.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useId, useState } from 'react'
import { Source, SourceProps, Story, Unstyled } from '@storybook/blocks'
import { Source, Story, Unstyled, type SourceProps } from '@storybook/blocks'
import classnames from 'classnames'
import styles from './NoClipCanvas.module.scss'

Expand Down
2 changes: 1 addition & 1 deletion docs/components/ResourceLinks/ResourceLinks.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { HTMLAttributes } from 'react'
import React, { type HTMLAttributes } from 'react'
import { Unstyled } from '@storybook/blocks'
import classNames from 'classnames'
import { Text } from '~components/Text'
Expand Down
2 changes: 1 addition & 1 deletion docs/components/SbContent/SbContent.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { HTMLAttributes } from 'react'
import React, { type HTMLAttributes } from 'react'
import { Unstyled } from '@storybook/blocks'
import classNames from 'classnames'
import styles from './SbContent.module.scss'
Expand Down
4 changes: 2 additions & 2 deletions docs/components/StickerSheet/StickerSheet.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React, { HTMLAttributes } from 'react'
import React, { type HTMLAttributes } from 'react'

import isChromatic from 'chromatic'
import classnames from 'classnames'
import { Heading } from '~components/Heading'
import { StickerSheetCell } from './components/StickerSheetCell'
import { StickerSheetHeader } from './components/StickerSheetHeader'
import { StickerSheetRow, StickerSheetRowProps } from './components/StickerSheetRow'
import { StickerSheetRow, type StickerSheetRowProps } from './components/StickerSheetRow'
import styles from './StickerSheet.module.css'

const IS_CHROMATIC = isChromatic()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { HTMLAttributes } from 'react'
import React, { type HTMLAttributes } from 'react'

export type StickerSheetCellProps = {
children: React.ReactNode
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { HTMLAttributes } from 'react'
import React, { type HTMLAttributes } from 'react'
import classnames from 'classnames'
import styles from './StickerSheetHeader.module.css'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { HTMLAttributes } from 'react'
import React, { type HTMLAttributes } from 'react'
import classnames from 'classnames'
import { StickerSheetCell } from '../StickerSheetCell'
import { StickerSheetHeader } from '../StickerSheetHeader'
Expand Down
2 changes: 1 addition & 1 deletion docs/test-runner.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getStoryContext, TestRunnerConfig } from '@storybook/test-runner'
import { getStoryContext, type TestRunnerConfig } from '@storybook/test-runner'
import { configureAxe, getAxeResults, injectAxe } from 'axe-playwright'
import { toHaveNoViolations } from 'jest-axe'
import { globalA11yRules } from './utils/global-a11y-rules'
Expand Down
2 changes: 1 addition & 1 deletion docs/theme.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint import/no-extraneous-dependencies: 0 */
import { ThemeVars, create } from '@storybook/theming'
import { create, type ThemeVars } from '@storybook/theming'
import { defaultTheme } from '@kaizen/design-tokens'
const colors = defaultTheme.color

Expand Down
2 changes: 1 addition & 1 deletion packages/components/__tests__/reactIntlMock.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MessageDescriptor } from '@cultureamp/i18n-react-intl'
import { type MessageDescriptor } from '@cultureamp/i18n-react-intl'
import { vi } from 'vitest'

const replaceInputValue = (str: string, value: string): string => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseJsx } from '../__tests__/utils'
import { transformSourceForTagName, printAst } from '../utils'
import { printAst, transformSourceForTagName } from '../utils'
import { transformConfirmationModalMoodsToVariant } from './transformConfirmationModalMoodsToVariant'

describe('transformConfirmationModalMoodsToVariant', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseJsx } from '../__tests__/utils'
import { transformSourceForTagName, printAst } from '../utils'
import { printAst, transformSourceForTagName } from '../utils'
import { transformNotificationTypeToVariant } from './migrateNotificationTypeToVariant'

describe('transformNotificationTypeToVariant', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseJsx } from '../__tests__/utils'
import { transformSourceForTagName, printAst } from '../utils'
import { printAst, transformSourceForTagName } from '../utils'
import { transformWellVariantToColor } from './transformWellVariantToColor'

describe('transformWellVariantToColor', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseJsx } from '../__tests__/utils'
import { transformSourceForTagName, printAst } from '../utils'
import { printAst, transformSourceForTagName } from '../utils'
import { removeInputEditModalMood } from './removeInputEditModalMood'

describe('removeInputEditModalMood', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseJsx } from '../__tests__/utils'
import { transformSourceForTagName, printAst } from '../utils'
import { printAst, transformSourceForTagName } from '../utils'
import { removePopoverVariant } from './removePopoverVariant'

describe('removePopoverVariant()', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as OLD_ICONS from '~components/Icon'
import { IconNames } from '~components/__future__/Icon/types'
import { StringSuggestions } from '~components/types/StringSuggestions'
import type * as OLD_ICONS from '~components/Icon'
import { type IconNames } from '~components/__future__/Icon/types'
import { type StringSuggestions } from '~components/types/StringSuggestions'

// `undefined` means the icon has no usage, thus is not available in the new icon set
type NewIconProps = { name: IconNames; isFilled?: boolean } | undefined
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { parseJsx } from '../__tests__/utils'
import {
printAst,
type ImportModuleNameTagsMap,
transformSource,
type ImportModuleNameTagsMap,
type TransformSourceArgs,
} from '../utils'
import { upgradeIconV1 } from './upgradeIconV1'
Expand Down
4 changes: 2 additions & 2 deletions packages/components/codemods/upgradeIconV1/upgradeIconV1.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import ts from 'typescript'
import {
setImportToAdd,
setImportToRemove,
type ImportModuleNameTagsMap,
updateKaioImports,
type ImportModuleNameTagsMap,
type UpdateKaioImportsArgs,
setImportToAdd,
} from '../utils'
import { getNewIconPropsFromOldIconName } from './getNewIconPropsFromOldIconName'
import { transformCaMonogramIconToBrand } from './transformCaMonogramIconToBrand'
Expand Down
2 changes: 1 addition & 1 deletion packages/components/codemods/utils/createProp.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import ts from 'typescript'
import { parseJsx } from '../__tests__/utils/parseJsx'
import { createStyleProp } from './createProp'
import { printAst } from './printAst'
import { TransformSourceArgs, transformSource } from './transformSource'
import { transformSource, type TransformSourceArgs } from './transformSource'
import { updateJsxElementWithNewProps } from './updateJsxElementWithNewProps'

export const mockedTransformer: ts.TransformerFactory<ts.SourceFile> = (context) => (rootNode) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseJsx } from '../__tests__/utils'
import { transformSourceForTagName, printAst, TransformSourceForTagNameArgs } from '../utils'
import { printAst, transformSourceForTagName, type TransformSourceForTagNameArgs } from '../utils'
import { migrateStringProp } from './migrateStringProp'

const transformTopping = (oldValue: string): string => {
Expand Down
2 changes: 1 addition & 1 deletion packages/components/codemods/utils/removeProps.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseJsx } from '../__tests__/utils'
import { transformSourceForTagName, printAst } from '../utils'
import { printAst, transformSourceForTagName } from '../utils'
import { removeProps } from './removeProps'

describe('removeProps()', () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/components/codemods/utils/transformSource.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import path from 'path'
import ts from 'typescript'
import { createEncodedSourceFile } from './createEncodedSourceFile'
import {
TransformSourceForTagNameArgs,
transformSource,
transformSourceForTagName,
type TransformSourceForTagNameArgs,
} from './transformSource'

const visit =
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ts from 'typescript'
import { parseJsx } from '../__tests__/utils'
import { updateKaioImports, UpdateKaioImportsArgs } from './updateKaioImports'
import { updateKaioImports, type UpdateKaioImportsArgs } from './updateKaioImports'
import { printAst } from '.'

const transformInput =
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/Avatar/Avatar.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import { render, fireEvent, screen } from '@testing-library/react'
import { fireEvent, render, screen } from '@testing-library/react'
import { Avatar } from './Avatar'

describe('<Avatar />', () => {
Expand Down
4 changes: 2 additions & 2 deletions packages/components/src/Avatar/Avatar.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React, { useState, useEffect, useRef, HTMLAttributes } from 'react'
import React, { useEffect, useRef, useState, type HTMLAttributes } from 'react'
import classnames from 'classnames'
import { Textfit } from 'react-textfit'
import { Icon } from '~components/__future__/Icon'
import { OverrideClassName } from '~components/types/OverrideClassName'
import { type OverrideClassName } from '~components/types/OverrideClassName'
import styles from './Avatar.module.scss'

export type AvatarSizes = 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import React from 'react'
import { Meta } from '@storybook/react'
import { StickerSheet, StickerSheetStory } from '~storybook/components/StickerSheet'
import { type Meta } from '@storybook/react'
import { StickerSheet, type StickerSheetStory } from '~storybook/components/StickerSheet'

import { Avatar, AvatarSizes, CompanyAvatarProps, GenericAvatarProps } from '../index'
import {
Avatar,
type AvatarSizes,
type CompanyAvatarProps,
type GenericAvatarProps,
} from '../index'

export default {
title: 'Components/Avatar',
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/Avatar/_docs/Avatar.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Meta, StoryObj } from '@storybook/react'
import { type Meta, type StoryObj } from '@storybook/react'
import { Avatar } from '../index'

const meta = {
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/AvatarGroup/AvatarGroup.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { render } from '@testing-library/react'
import { AvatarGroup, AvatarList } from './AvatarGroup'
import { AvatarGroup, type AvatarList } from './AvatarGroup'

const imgAvatars = [
{
Expand Down
6 changes: 3 additions & 3 deletions packages/components/src/AvatarGroup/AvatarGroup.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { HTMLAttributes } from 'react'
import React, { type HTMLAttributes } from 'react'
import classnames from 'classnames'
import { Avatar, CompanyAvatarProps, GenericAvatarProps } from '~components/Avatar'
import { OverrideClassName } from '~components/types/OverrideClassName'
import { Avatar, type CompanyAvatarProps, type GenericAvatarProps } from '~components/Avatar'
import { type OverrideClassName } from '~components/types/OverrideClassName'
import styles from './AvatarGroup.module.scss'

export type AvatarGroupAvatarProps =
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Meta } from '@storybook/react'
import { StickerSheet, StickerSheetStory } from '~storybook/components/StickerSheet'
import { AvatarGroup, AvatarGroupSize } from '../index'
import { type Meta } from '@storybook/react'
import { StickerSheet, type StickerSheetStory } from '~storybook/components/StickerSheet'
import { AvatarGroup, type AvatarGroupSize } from '../index'
import { AVATARS, EXAMPLE_USER_1, EXAMPLE_USER_2 } from './example-data'

export default {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Meta, StoryObj } from '@storybook/react'
import { type Meta, type StoryObj } from '@storybook/react'
import { AvatarGroup } from '../index'
import { AVATARS } from './example-data'

Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/AvatarGroup/_docs/example-data.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AvatarGroupAvatarProps, AvatarList } from '../AvatarGroup'
import { type AvatarGroupAvatarProps, type AvatarList } from '../AvatarGroup'

export const EXAMPLE_USER_1: AvatarGroupAvatarProps = {
fullName: 'Adirana Appleseed',
Expand Down
4 changes: 2 additions & 2 deletions packages/components/src/Badge/Badge.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { HTMLAttributes, useLayoutEffect, useState } from 'react'
import React, { useLayoutEffect, useState, type HTMLAttributes } from 'react'
import classnames from 'classnames'
import { OverrideClassName } from '~components/types/OverrideClassName'
import { type OverrideClassName } from '~components/types/OverrideClassName'
import styles from './Badge.module.scss'

type BadgeCommonProps = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Meta } from '@storybook/react'
import { StickerSheet, StickerSheetStory } from '~storybook/components/StickerSheet'
import { type Meta } from '@storybook/react'
import { StickerSheet, type StickerSheetStory } from '~storybook/components/StickerSheet'
import { Badge } from '../index'

export default {
Expand Down
4 changes: 2 additions & 2 deletions packages/components/src/Badge/_docs/Badge.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Meta, StoryObj } from '@storybook/react'
import { BadgeAnimated, Badge } from '~components/Badge'
import { type Meta, type StoryObj } from '@storybook/react'
import { Badge, BadgeAnimated } from '~components/Badge'

const meta = {
title: 'Components/Badge',
Expand Down
4 changes: 2 additions & 2 deletions packages/components/src/Brand/Brand.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { HTMLAttributes, SVGAttributes } from 'react'
import React, { type HTMLAttributes, type SVGAttributes } from 'react'
import classnames from 'classnames'
import { OverrideClassName } from '~components/types/OverrideClassName'
import { type OverrideClassName } from '~components/types/OverrideClassName'
import { assetUrl } from '~components/utils/hostedAssets'
import { BrandCollectiveIntelligence } from './BrandCollectiveIntelligence'
import styles from './Brand.module.scss'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import { BrandSVGProps } from '../Brand'
import { type BrandSVGProps } from '../Brand'

export type BrandCollectiveIntelligenceProps = BrandSVGProps

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Meta } from '@storybook/react'
import { StickerSheet, StickerSheetStory } from '~storybook/components/StickerSheet'
import { type Meta } from '@storybook/react'
import { StickerSheet, type StickerSheetStory } from '~storybook/components/StickerSheet'
import { Brand } from '../index'

export default {
Expand Down
4 changes: 2 additions & 2 deletions packages/components/src/Brand/_docs/Brand.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Meta, StoryObj } from '@storybook/react'
import { StickerSheetStory } from '~storybook/components/StickerSheet'
import { type Meta, type StoryObj } from '@storybook/react'
import { type StickerSheetStory } from '~storybook/components/StickerSheet'
import { Brand } from '../index'
import { StickerSheetDefault } from './Brand.stickersheet.stories'

Expand Down
8 changes: 4 additions & 4 deletions packages/components/src/BrandMoment/BrandMoment.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React, { ReactNode, ReactElement, HTMLAttributes } from 'react'
import React, { type HTMLAttributes, type ReactElement, type ReactNode } from 'react'
import classnames from 'classnames'
import { Heading } from '~components/Heading'
import { SceneProps } from '~components/Illustration'
import { type SceneProps } from '~components/Illustration'
import { Text } from '~components/Text'
import { Button, ButtonProps } from '~components/__actions__/v2'
import { OverrideClassName } from '~components/types/OverrideClassName'
import { Button, type ButtonProps } from '~components/__actions__/v2'
import { type OverrideClassName } from '~components/types/OverrideClassName'
import { assetUrl } from '~components/utils/hostedAssets'
import { useMediaQueries } from '~components/utils/useMediaQueries'
import styles from './BrandMoment.module.scss'
Expand Down
Loading

0 comments on commit be750dc

Please sign in to comment.