WIP: A simple cli for daily tangled use cases and AI integration. This is for my personal use right now, but happy if others get mileage from it! :)
1{
2 "$schema": "https://biomejs.dev/schemas/2.3.6/schema.json",
3 "vcs": {
4 "enabled": true,
5 "clientKind": "git",
6 "useIgnoreFile": true
7 },
8 "files": {
9 "ignoreUnknown": false,
10 "includes": [
11 "**",
12 "!**/node_modules",
13 "!**/dist",
14 "!**/coverage",
15 "!**/src/lexicon",
16 "!**/lexicons"
17 ]
18 },
19 "formatter": {
20 "enabled": true,
21 "indentStyle": "space",
22 "indentWidth": 2,
23 "lineWidth": 100
24 },
25 "linter": {
26 "enabled": true,
27 "rules": {
28 "recommended": true,
29 "suspicious": {
30 "noExplicitAny": "warn"
31 },
32 "style": {
33 "useConst": "error",
34 "useTemplate": "warn"
35 }
36 }
37 },
38 "javascript": {
39 "formatter": {
40 "quoteStyle": "single",
41 "trailingCommas": "es5",
42 "semicolons": "always"
43 }
44 },
45 "assist": { "actions": { "source": { "organizeImports": "on" } } }
46}