Skip to content

Commit

Permalink
style: set noConsole as error
Browse files Browse the repository at this point in the history
  • Loading branch information
c100k committed Oct 6, 2024
1 parent 11c8368 commit 3dd5e2c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

## spec/v0.4.1 (unreleased)

* style: set noConsole as error
* chore: replace eslint/prettier by biome
* chore: upgrade to node 22
* chore: simplify linting
Expand Down
7 changes: 5 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
"formatter": {
"indentStyle": "space",
"indentWidth": 4
Expand All @@ -15,7 +15,10 @@
"linter": {
"enabled": true,
"rules": {
"recommended": true
"recommended": true,
"suspicious": {
"noConsole": "error"
}
}
},
"organizeImports": {
Expand Down

0 comments on commit 3dd5e2c

Please sign in to comment.