Skip to content

Commit

Permalink
Update a few linter lines
Browse files Browse the repository at this point in the history
  • Loading branch information
rkalis committed Nov 27, 2024
1 parent d24e15c commit 07bfa4f
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,19 @@
"bracketSpacing": true
},
"organizeImports": { "enabled": true },
"linter": { "enabled": true, "rules": { "recommended": true } },
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "warn",
"noShadowRestrictedNames": "warn"
},
"style": {
"noInferrableTypes": "off"
}
}
},
"javascript": {
"formatter": {
"jsxQuoteStyle": "double",
Expand Down

0 comments on commit 07bfa4f

Please sign in to comment.