chore: enforce consistent coding style and semicolon removal
- Update ESLint configuration to enforce no semicolons (`semi: ['error', 'never']`) - Fix all instances of semicolons in `*.ts` files to align with style rules - Adjust related ESLint rules for `no-extra-semi` - Simplify unnecessary semicolon patterns in global variable assignments
This commit is contained in:
parent
cfd74adcb3
commit
797839c135
5 changed files with 207 additions and 207 deletions
|
|
@ -34,7 +34,7 @@ if (globalObj) {
|
|||
}
|
||||
|
||||
// Create special global constructors for library compatibility
|
||||
;(globalObj as any).__TextEncoder__ = TextEncoder
|
||||
(globalObj as any).__TextEncoder__ = TextEncoder
|
||||
;(globalObj as any).__TextDecoder__ = TextDecoder
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue