Add ESLint integration and Angular linting support
Configured ESLint for the project with Angular and TypeScript support. Added angular-eslint dependencies, updated angular.json to include linting, and created eslint.config.js for lint rules. Updated package.json and package-lock.json with new dev dependencies.
This commit is contained in:
@@ -10,13 +10,7 @@ export class ReloadService {
|
||||
private readonly _languageChangedTick = signal(0);
|
||||
readonly languageChangedTick = this._languageChangedTick.asReadonly();
|
||||
|
||||
constructor(zone: NgZone) {
|
||||
zone.runOutsideAngular(() => {
|
||||
globalThis.addEventListener('storage', (e: StorageEvent) => {
|
||||
this.informListeners(e, zone);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
private informListeners(e: StorageEvent, zone: NgZone) {
|
||||
|
||||
Reference in New Issue
Block a user