|
| 1 | +{ |
| 2 | + "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", |
| 3 | + "vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false }, |
| 4 | + "files": { "ignoreUnknown": false, "ignore": [] }, |
| 5 | + "formatter": { |
| 6 | + "enabled": true, |
| 7 | + "useEditorconfig": true, |
| 8 | + "formatWithErrors": false, |
| 9 | + "indentStyle": "space", |
| 10 | + "indentWidth": 2, |
| 11 | + "lineEnding": "lf", |
| 12 | + "lineWidth": 150, |
| 13 | + "attributePosition": "auto", |
| 14 | + "bracketSpacing": true, |
| 15 | + "ignore": [ |
| 16 | + "**/dist", |
| 17 | + "**/coverage", |
| 18 | + "**/*/node_modules", |
| 19 | + "packages/siop-oid4vp/lib/schemas" |
| 20 | + ] |
| 21 | + }, |
| 22 | + "organizeImports": { "enabled": true }, |
| 23 | + "linter": { |
| 24 | + "enabled": true, |
| 25 | + "rules": { "recommended": false }, |
| 26 | + "ignore": ["**/node_modules", "**/dist", "**/coverage", "**/jest.js"] |
| 27 | + }, |
| 28 | + "javascript": { |
| 29 | + "formatter": { |
| 30 | + "jsxQuoteStyle": "double", |
| 31 | + "quoteProperties": "asNeeded", |
| 32 | + "trailingCommas": "all", |
| 33 | + "semicolons": "asNeeded", |
| 34 | + "arrowParentheses": "always", |
| 35 | + "bracketSameLine": false, |
| 36 | + "quoteStyle": "single", |
| 37 | + "attributePosition": "auto", |
| 38 | + "bracketSpacing": true |
| 39 | + }, |
| 40 | + "globals": ["BigInt", "vitest", "WebAssembly", "console"] |
| 41 | + }, |
| 42 | + "overrides": [ |
| 43 | + { |
| 44 | + "include": ["**/__tests__/**/*.ts"], |
| 45 | + "linter": { "rules": { "style": { "noNonNullAssertion": "off" } } } |
| 46 | + } |
| 47 | + ] |
| 48 | +} |
0 commit comments