Skip to content

Commit 1e28a25

Browse files
committedDec 18, 2024·
chore: lint
1 parent 58bdca2 commit 1e28a25

File tree

6 files changed

+22
-20
lines changed

6 files changed

+22
-20
lines changed
 

‎.github/workflows/autofix.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: autofix.ci # needed to securely identify the workflow
1+
name: autofix.ci # needed to securely identify the workflow
22

33
on:
44
pull_request:
55
push:
6-
branches: [ "main" ]
6+
branches: ["main"]
77

88
permissions:
99
contents: read
@@ -23,4 +23,4 @@ jobs:
2323
run: pnpm run lint:fix
2424
- uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c
2525
with:
26-
commit-message: 'chore: apply automated lint fixes'
26+
commit-message: "chore: apply automated lint fixes"

‎.prettierignore

+7
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
11
test/drivers/tmp
2+
dist
3+
node_modules
4+
.output
5+
.nuxt
6+
CHANGELOG.md
7+
pnpm-lock.yaml
8+
docs/2.drivers/0.index.md

‎docs/1.guide/1.index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -356,11 +356,11 @@ type StorageDefinition = {
356356
items: {
357357
foo: string;
358358
baz: number;
359-
}
360-
}
359+
};
360+
};
361361

362362
const storage = createStorage<StorageDefinition>();
363-
await storage.has("foo");// Ts will prompt you that there are two optional keys: "foo" or "baz"
363+
await storage.has("foo"); // Ts will prompt you that there are two optional keys: "foo" or "baz"
364364
await storage.getItem("baz"); // => string
365365
await storage.setItem("foo", 12); // TS error: <number> is not compatible with <string>
366366
await storage.setItem("foo", "val"); // Check ok

‎package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
"bench": "jiti test/server.bench.ts",
3535
"build": "unbuild",
3636
"dev": "vitest",
37-
"lint": "eslint . && prettier -c src test",
38-
"lint:fix": "eslint . --fix && prettier -w src test",
37+
"lint": "eslint . && prettier -c .",
38+
"lint:fix": "eslint . --fix && prettier -w .",
3939
"prepack": "pnpm build",
4040
"release": "pnpm test && changelogen --release && git push --follow-tags && pnpm publish",
4141
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
@@ -108,15 +108,15 @@
108108
"@azure/keyvault-secrets": "^4.9.0",
109109
"@azure/storage-blob": "^12.26.0",
110110
"@capacitor/preferences": "^6.0.3",
111+
"@deno/kv": ">=0.8.4",
111112
"@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0",
112113
"@planetscale/database": "^1.19.0",
113114
"@upstash/redis": "^1.34.3",
114115
"@vercel/blob": ">=0.27.0",
115116
"@vercel/kv": "^1.0.1",
116117
"db0": ">=0.2.1",
117118
"idb-keyval": "^6.2.1",
118-
"ioredis": "^5.4.1",
119-
"@deno/kv": ">=0.8.4"
119+
"ioredis": "^5.4.1"
120120
},
121121
"peerDependenciesMeta": {
122122
"@azure/app-configuration": {
@@ -140,6 +140,9 @@
140140
"@capacitor/preferences": {
141141
"optional": true
142142
},
143+
"@deno/kv": {
144+
"optional": true
145+
},
143146
"@netlify/blobs": {
144147
"optional": true
145148
},
@@ -163,9 +166,6 @@
163166
},
164167
"ioredis": {
165168
"optional": true
166-
},
167-
"@deno/kv": {
168-
"optional": true
169169
}
170170
},
171171
"packageManager": "pnpm@9.15.0"

‎renovate.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
{
2-
"extends": [
3-
"github>unjs/renovate-config"
4-
]
2+
"extends": ["github>unjs/renovate-config"]
53
}

‎tsconfig.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
"noEmit": true,
1717
"allowImportingTsExtensions": true,
1818
"skipLibCheck": true,
19-
"types": [
20-
"node",
21-
"deno"
22-
],
19+
"types": ["node", "deno"]
2320
}
2421
}

0 commit comments

Comments
 (0)
Please sign in to comment.