update deps and add prettier config
This commit is contained in:
parent
1fddacb149
commit
88d7fdb74d
4 changed files with 37 additions and 2 deletions
13
.prettierignore
Normal file
13
.prettierignore
Normal file
|
@ -0,0 +1,13 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
/build
|
||||
/.svelte-kit
|
||||
/package
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# Ignore files for PNPM, NPM and YARN
|
||||
pnpm-lock.yaml
|
||||
package-lock.json
|
||||
yarn.lock
|
21
.prettierrc
Normal file
21
.prettierrc
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"useTabs": false,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "none",
|
||||
"printWidth": 100,
|
||||
"plugins": [
|
||||
"prettier-plugin-svelte",
|
||||
"prettier-plugin-tailwindcss"
|
||||
],
|
||||
"pluginSearchDirs": [
|
||||
"."
|
||||
],
|
||||
"overrides": [
|
||||
{
|
||||
"files": "*.svelte",
|
||||
"options": {
|
||||
"parser": "svelte"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -17,10 +17,11 @@
|
|||
"eslint-config-greasemonkey": "^1.0.1",
|
||||
"eslint-config-prettier": "^10.1.1",
|
||||
"prettier": "^4.0.0-alpha.12",
|
||||
"prettier-plugin-svelte": "^3.3.3",
|
||||
"prettier-plugin-tailwindcss": "^0.6.11"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tailwindcss/cli": "4.0.14",
|
||||
"@tailwindcss/cli": "4.0.17",
|
||||
"bun-plugin-svelte": "^0.0.6",
|
||||
"bun-plugin-tailwind": "^0.0.15",
|
||||
"tailwindcss": "^4.0.17"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!doctype html>
|
||||
<html lang="en" class="min-h-dvh">
|
||||
<head>
|
||||
<title>Niki Wix Skaarup</title>
|
||||
<title>Userscripts - skaarup.dev</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link
|
||||
|
|
Loading…
Add table
Reference in a new issue