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
|
|
@ -53,7 +53,7 @@ export const environment = {
|
|||
|
||||
// Make environment information available globally
|
||||
if (typeof globalThis !== 'undefined') {
|
||||
;(globalThis as any).__ENV__ = environment
|
||||
(globalThis as any).__ENV__ = environment
|
||||
}
|
||||
|
||||
// Log the detected environment
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue