Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.

Commit 3c078cf

Browse files
committed
Merge branch 'main' into cursor/implement-oauth-client-and-demo-page-b653
2 parents 6c25ed1 + 795ee8c commit 3c078cf

File tree

10 files changed

+1438
-6010
lines changed

10 files changed

+1438
-6010
lines changed

.eslintrc

Lines changed: 0 additions & 7 deletions
This file was deleted.

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.github/
22
coverage/
33
test/
4-
.eslint*
4+
biome.jsonc
55
.prettier*

.vscode/settings.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"editor.defaultFormatter": "esbenp.prettier-vscode",
3+
"editor.codeActionsOnSave": { "source.fixAll": "explicit" },
4+
"editor.formatOnSave": true,
5+
6+
// Explicitly disable ESLint to avoid conflicts with Biome.
7+
"biome.enabled": true,
8+
"eslint.enable": false,
9+
"prettier.enable": true
10+
}

biome.jsonc

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3+
"extends": ["@readme/standards/biome"],
4+
"root": true,
5+
"files": {
6+
"ignoreUnknown": false,
7+
"includes": [
8+
"**/*.{js,ts}",
9+
10+
// Biome's `vcs.useIgnoreFile` config should be able to pick these up but it doesn't.
11+
"!coverage",
12+
"!dist",
13+
],
14+
},
15+
"linter": {
16+
"domains": {
17+
// These domains are configured in our core standards package but Biome `extends` seems to
18+
// not load it in so we have to redefine them.
19+
"project": "all",
20+
"test": "all",
21+
},
22+
"rules": {
23+
"correctness": {
24+
"useImportExtensions": {
25+
"level": "off",
26+
"options": {
27+
// we need this since we cannot set `allowImportingTsExtensions` in our `tsconfig.json`.
28+
// See: https://biomejs.dev/linter/rules/use-import-extensions/#forcejsextensions
29+
"forceJsExtensions": true,
30+
},
31+
},
32+
},
33+
},
34+
},
35+
}

0 commit comments

Comments
 (0)