mirror of
https://github.com/fancive/obsidian-parallel-reader.git
synced 2026-07-22 06:53:43 +00:00
46 lines
953 B
JSON
46 lines
953 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.0.0/schema.json",
|
|
"files": {
|
|
"includes": [
|
|
"main.ts",
|
|
"src/**/*.ts",
|
|
"tests/**/*.js",
|
|
"scripts/**/*.mjs",
|
|
".e2e/scripts/**/*.mjs",
|
|
"esbuild.config.mjs"
|
|
]
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"suspicious": {
|
|
"noExplicitAny": "error",
|
|
"noRedundantUseStrict": "off",
|
|
"noImplicitAnyLet": "error"
|
|
},
|
|
"style": {
|
|
"noNonNullAssertion": "error",
|
|
"useConst": "warn",
|
|
"useNodejsImportProtocol": "off",
|
|
"useTemplate": "off"
|
|
},
|
|
"complexity": {
|
|
"noForEach": "off"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineWidth": 120
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"semicolons": "always",
|
|
"trailingCommas": "all"
|
|
}
|
|
}
|
|
}
|