This commit is contained in:
2025-03-02 17:15:58 +00:00
commit e4253e6de2
26 changed files with 1806 additions and 0 deletions

26
biome.json Normal file
View File

@@ -0,0 +1,26 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"all": true,
"correctness": {
"noUndeclaredDependencies": "off"
},
"complexity": {
"useLiteralKeys": "off"
},
"style": {
"useExplicitLengthCheck": "off",
"useNamingConvention": "off"
}
},
"ignore": [
"src/Services/Miniflux/Requests/*",
"src/Services/Miniflux/Responses/*"
]
}
}