forked from gakusai-UoA/trackable-links-oss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbiome.jsonc
More file actions
54 lines (54 loc) · 1.62 KB
/
Copy pathbiome.jsonc
File metadata and controls
54 lines (54 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
// Respect .gitignore so that locally-generated, untracked files are not
// linted. Without this, `pnpm lint` fails on machine-specific files such as
// .claude/settings.local.json, which CI never sees — so the failure only ever
// happens on a developer's machine.
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignore": [
"**/dist",
"**/node_modules",
"**/.wrangler",
"**/worker-configuration.d.ts",
// Generated load-test fixtures. `useIgnoreFile` above only reads the root
// .gitignore, so the nested one under loadtest/ does not reach biome.
"**/loadtest/.out",
// Throwaway git worktrees created by tooling. They hold a second full
// checkout, so without this `pnpm lint` reports another copy of the repo —
// often with CRLF diagnostics that do not exist in the real tree, which
// reads as "lint is broken" when nothing is wrong. Excluded via
// .git/info/exclude rather than .gitignore, and biome reads neither.
"**/.claude/worktrees"
]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": { "noNonNullAssertion": "off" },
"a11y": {
"useButtonType": "off",
"noAutofocus": "off",
"useSemanticElements": "off",
"useKeyWithClickEvents": "off"
},
"suspicious": { "noArrayIndexKey": "off", "noExplicitAny": "off" },
"correctness": { "useExhaustiveDependencies": "off" }
}
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "always"
}
}
}