Skip to content

Commit

Permalink
fix: allow any as a biome rule
Browse files Browse the repository at this point in the history
Signed-off-by: Mirko Mollik <[email protected]>
  • Loading branch information
cre8 committed Feb 21, 2024
1 parent 2805ad2 commit c22bfe5
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
{
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
}
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
"organizeImports": {
"enabled": true
},
"files": {
"ignore": ["**/dist/**"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "off"
}
}
}
}

0 comments on commit c22bfe5

Please sign in to comment.