Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
Change line width
Browse files Browse the repository at this point in the history
  • Loading branch information
dzbo committed Oct 31, 2024
1 parent 25dc3e4 commit 6b2d9d2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ root = true
end_of_line = lf
insert_final_newline = true

[*.{js,json,yml}]
[*.{js,ts,json,yml}]
charset = utf-8
indent_style = space
indent_size = 2
print_width = 80
4 changes: 1 addition & 3 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,7 @@ const setupNetwork = async () => {
}
} else {
console.warn(
`Invalid network: ${network}, valid networks are ${SUPPORTED_NETWORK_IDS.join(
', '
)}`
`Invalid network: ${network}, valid networks are ${SUPPORTED_NETWORK_IDS.join(', ')}`
)
}
}
Expand Down
3 changes: 2 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"formatter": {
"enabled": false,
"indentWidth": 2,
"indentStyle": "space"
"indentStyle": "space",
"lineWidth": 80
},
"javascript": {
"formatter": {
Expand Down
4 changes: 1 addition & 3 deletions services/ipfs/formdata-base-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,7 @@ export class BaseFormDataUploader {
error = (error as any).error || error
throw new NetworkError(
new Error(
`unknown server response while pinning File to IPFS: ${
error || response.status
}`
`unknown server response while pinning File to IPFS: ${error || response.status}`
),
response.status
)
Expand Down

0 comments on commit 6b2d9d2

Please sign in to comment.