mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
34 lines
666 B
JSON
34 lines
666 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.1.4/schema.json",
|
|
"files": {
|
|
"includes": ["src/**/*.{js,jsx,ts,tsx}"],
|
|
"ignoreUnknown": true
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"correctness": {
|
|
"noUnusedVariables": "warn"
|
|
},
|
|
"suspicious": {
|
|
"noImplicitAnyLet": "off"
|
|
},
|
|
"complexity": {
|
|
"useOptionalChain": "off"
|
|
},
|
|
"style": {
|
|
"noNonNullAssertion": "warn",
|
|
"noParameterAssign": "warn"
|
|
},
|
|
"a11y": {
|
|
"noSvgWithoutTitle": "warn"
|
|
}
|
|
}
|
|
}
|
|
}
|