Skip to content

Commit

Permalink
chore: remove biome format rule quoteProperties
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkaxis committed Oct 3, 2023
1 parent 6c0d90c commit d4dbd05
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@
"semicolons": "asNeeded",
"quoteStyle": "single",
"trailingComma": "es5",
"arrowParentheses": "asNeeded",
"quoteProperties": "preserve"
"arrowParentheses": "asNeeded"
}
}
}
8 changes: 4 additions & 4 deletions packages/core/src/DateTimePicker/DateTimePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ import { Icon } from '../Icon'
import { TranslationMeridiem } from './types'

export enum DateTimeTabs {
'TwentyFour' = '24',
'AMPM' = 'AM/PM',
'Min' = 'Min',
'Date' = 'Date',
TwentyFour = '24',
AMPM = 'AM/PM',
Min = 'Min',
Date = 'Date',
}

const TitleContainer = styled.div`
Expand Down
6 changes: 3 additions & 3 deletions packages/core/src/Toast/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ export interface BaseToastValue {
}

export enum ToastActionType {
'TOAST_CREATE',
'TOAST_REMOVE',
'TOAST_REMOVE_ALL',
TOAST_CREATE,
TOAST_REMOVE,
TOAST_REMOVE_ALL,
}

export type ToastId = string
Expand Down

0 comments on commit d4dbd05

Please sign in to comment.