[Dev] Mark the fixer for Biome's useBlockStatements as "safe" (#6031)

This commit is contained in:
NightKev 2025-06-25 18:16:30 -07:00 committed by GitHub
parent ecdaac20fa
commit c389b7acdb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,7 +70,10 @@
}, },
"style": { "style": {
"useEnumInitializers": "off", // large enums like Moves/Species would make this cumbersome "useEnumInitializers": "off", // large enums like Moves/Species would make this cumbersome
"useBlockStatements": "error", "useBlockStatements": {
"level": "error",
"fix": "safe"
},
"useConst": "error", "useConst": "error",
"useImportType": "error", "useImportType": "error",
"noNonNullAssertion": "off", // TODO: Turn this on ASAP and fix all non-null assertions in non-test files "noNonNullAssertion": "off", // TODO: Turn this on ASAP and fix all non-null assertions in non-test files