mirror of
https://github.com/Xevion/byte-me.git
synced 2025-12-05 23:14:31 -06:00
chore: fix prettier ignore, reformat everything
This commit is contained in:
3
.prettierignore
Normal file
3
.prettierignore
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
src/bindings.ts
|
||||||
|
src-tauri/target/**
|
||||||
|
src-tauri/gen/**
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"ignore": ["src/bindings.ts"],
|
|
||||||
"useTabs": true,
|
"useTabs": true,
|
||||||
"tabWidth": 2
|
"tabWidth": 2
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
|
|||||||
@@ -26,6 +26,7 @@
|
|||||||
"@types/react": "^18.3.1",
|
"@types/react": "^18.3.1",
|
||||||
"@types/react-dom": "^18.3.1",
|
"@types/react-dom": "^18.3.1",
|
||||||
"@vitejs/plugin-react": "^4.3.4",
|
"@vitejs/plugin-react": "^4.3.4",
|
||||||
|
"prettier": "^3.6.2",
|
||||||
"typescript": "~5.6.2",
|
"typescript": "~5.6.2",
|
||||||
"vite": "^6.0.3",
|
"vite": "^6.0.3",
|
||||||
"vitest": "^3.2.4"
|
"vitest": "^3.2.4"
|
||||||
|
|||||||
2673
pnpm-lock.yaml
generated
2673
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,3 @@
|
|||||||
onlyBuiltDependencies:
|
onlyBuiltDependencies:
|
||||||
- '@tailwindcss/oxide'
|
- "@tailwindcss/oxide"
|
||||||
- esbuild
|
- esbuild
|
||||||
|
|||||||
@@ -3,8 +3,5 @@
|
|||||||
"identifier": "default",
|
"identifier": "default",
|
||||||
"description": "Capability for the main window",
|
"description": "Capability for the main window",
|
||||||
"windows": ["main"],
|
"windows": ["main"],
|
||||||
"permissions": [
|
"permissions": ["core:default", "opener:default"]
|
||||||
"core:default",
|
|
||||||
"opener:default"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ function App() {
|
|||||||
setPaths([]);
|
setPaths([]);
|
||||||
console.log("User left", payload);
|
console.log("User left", payload);
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
// you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
|
// you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ const DropOverlay = ({ paths }: DropOverlayProps) => {
|
|||||||
<span className="inline-block w-32 h-5 bg-neutral-300/10 rounded animate-pulse" />
|
<span className="inline-block w-32 h-5 bg-neutral-300/10 rounded animate-pulse" />
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
))
|
)),
|
||||||
)
|
)
|
||||||
.with({ status: "ready" }, (r) => {
|
.with({ status: "ready" }, (r) => {
|
||||||
return r.files
|
return r.files
|
||||||
|
|||||||
@@ -6,5 +6,5 @@ import "./global.css";
|
|||||||
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
||||||
<React.StrictMode>
|
<React.StrictMode>
|
||||||
<App />
|
<App />
|
||||||
</React.StrictMode>
|
</React.StrictMode>,
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user