linted
This commit is contained in:
parent
417af2fc20
commit
8fc86b9bd9
|
@ -24,8 +24,8 @@
|
|||
"lint:styles:fix": "stylelint **/*.{scss,css} --fix",
|
||||
"preview": "vite preview",
|
||||
"start": "vite",
|
||||
"check:types": "tsc --noEmit",
|
||||
"check:types:watch": "tsc --noEmit --watch"
|
||||
"typecheck": "tsc --noEmit",
|
||||
"typecheck:watch": "tsc --noEmit --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"form-data": "4.0.0",
|
||||
|
|
|
@ -28,7 +28,6 @@ const embedData = (data) => {
|
|||
|
||||
const result: { src: string; width?: string; height?: string } = { src: '' }
|
||||
|
||||
// biome-ignore lint/style/useForOf: <explanation>
|
||||
for (let i = 0; i < attributes.length; i++) {
|
||||
const attribute = attributes.item(i)
|
||||
if (attribute) {
|
||||
|
|
|
@ -59,7 +59,6 @@ export const Header = (props: Props) => {
|
|||
const [isTopicsVisible, setIsTopicsVisible] = createSignal(false)
|
||||
const [isZineVisible, setIsZineVisible] = createSignal(false)
|
||||
const [isFeedVisible, setIsFeedVisible] = createSignal(false)
|
||||
const { session } = useSession()
|
||||
|
||||
const toggleFixed = () => setFixed(!fixed())
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ export const HeaderAuth = (props: Props) => {
|
|||
toggleEditorPanel()
|
||||
}
|
||||
|
||||
const handleSaveButtonClick = () => {
|
||||
const _handleSaveButtonClick = () => {
|
||||
saveShout(form)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user