1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-27 13:49:10 +02:00

Add .vite to biome's ignore lists (formatting and linting) (#10518)

Also fixes an auto-fixable issue reported by biome.
This commit is contained in:
Thomas Heartman 2025-08-22 09:36:56 +02:00 committed by GitHub
parent 18bea25383
commit b321bfba99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -77,7 +77,8 @@
"coverage",
"CHANGELOG.md",
"./package.json",
"./frontend/package.json"
"./frontend/package.json",
".vite"
]
},
"organizeImports": {
@ -101,7 +102,8 @@
"website/global.js",
".docusaurus",
"./package.json",
"./frontend/package.json"
"./frontend/package.json",
".vite"
],
"indentWidth": 4
},

View File

@ -1,7 +1,6 @@
import type { IChangeRequestReorderStrategy } from '../../../../changeRequest.types';
import type { ReactNode } from 'react';
import { useFeature } from 'hooks/api/getters/useFeature/useFeature';
import { TooltipLink } from 'component/common/TooltipLink/TooltipLink';
import { Box, styled } from '@mui/material';
import { EnvironmentStrategyOrderDiff } from './EnvironmentStrategyOrderDiff.tsx';
import { StrategyExecution } from 'component/feature/FeatureView/FeatureOverview/FeatureOverviewEnvironments/FeatureOverviewEnvironment/EnvironmentAccordionBody/StrategyDraggableItem/StrategyItem/StrategyExecution/StrategyExecution';