{ "$schema": "https://biomejs.dev/schemas/2.0.0-beta.5/schema.json", "files": { "includes": [ "**/*.js", "**/*.ts", "**/*.json", "**/*.yml", "**/*.md", "!node_modules/*", "!target/*", "!**/tmp/*", "!**/*.spec.json", "!**/.papi/descriptors/**/*", "!**/contract-bindings/**/*", "!**/html/**/*" ] }, "assist": { "actions": { "source": { "organizeImports": "on" } } }, "formatter": { "enabled": true, "attributePosition": "multiline", "indentStyle": "space", "indentWidth": 2, "lineWidth": 100 }, "json": { "formatter": { "enabled": true } }, "javascript": { "formatter": { "trailingCommas": "none", "semicolons": "always", "quoteStyle": "double" } }, "linter": { "enabled": true, "rules": { "recommended": true, "correctness": { "noUnusedVariables": "warn", "noUnusedImports": "warn" }, "suspicious": { "noExplicitAny": "off", "noAsyncPromiseExecutor": "off" }, "performance": { "noAccumulatingSpread": "off" }, "nursery": { "noFloatingPromises": "error" }, "style": { "noParameterAssign": "error", "useAsConstAssertion": "error", "useDefaultParameterLast": "error", "useEnumInitializers": "error", "useSelfClosingElements": "error", "useSingleVarDeclarator": "error", "noUnusedTemplateLiteral": "error", "useNumberNamespace": "error", "noInferrableTypes": "error", "noUselessElse": "error", "noNonNullAssertion": "off" } } } }