some biome lints

This commit is contained in:
SArpnt 2024-08-09 13:41:29 -04:00
parent b32da4b457
commit 5b24734f1c
Signed by: SArpnt
SSH key fingerprint: SHA256:iDMeic8KkqqEsN4wODlgsk1d/oW1ojZ/cu/MEWyfLBw

View file

@ -8,10 +8,23 @@
"*.md",
],
},
"vcs": {
"enabled": true,
"clientKind": "git",
},
"linter": {
"rules": {
"style": {
"useBlockStatements": "warn",
"noCommaOperator": "off",
"noNonNullAssertion": "off",
},
"complexity": {
"noForEach": "off",
"useLiteralKeys": "off",
},
"performance": {
"noDelete": "off",
},
},
},