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/1.9.4/schema.json",
3 "vcs": {
4 "enabled": true,
5 "clientKind": "git",
6 "useIgnoreFile": true
7 },
8 "files": {
9 "ignoreUnknown": false,
10 "ignore": ["node_modules", "dist", "coverage", "src/lexicon/**", "lexicons/**"]
11 },
12 "formatter": {
13 "enabled": true,
14 "indentStyle": "space",
15 "indentWidth": 2,
16 "lineWidth": 100
17 },
18 "linter": {
19 "enabled": true,
20 "rules": {
21 "recommended": true,
22 "suspicious": {
23 "noExplicitAny": "warn"
24 },
25 "style": {
26 "useConst": "error",
27 "useTemplate": "warn"
28 }
29 }
30 },
31 "javascript": {
32 "formatter": {
33 "quoteStyle": "single",
34 "trailingCommas": "es5",
35 "semicolons": "always"
36 }
37 },
38 "organizeImports": {
39 "enabled": true
40 }
41}