fix: resolve linting issues

- Fix indentation in DependencyGraph.ts getMetrics return type
- Add ESLint disable comment for Guards class (utility class pattern)
- Clean up formatting across analyzer files
This commit is contained in:
imfozilbek
2025-11-24 12:54:24 +05:00
parent 3f2a9f2051
commit 0b7c8796ad
3 changed files with 5 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ import { TYPE_NAMES } from "../constants"
/**
* Type guard utilities for runtime type checking
*/
// eslint-disable-next-line @typescript-eslint/no-extraneous-class
export class Guards {
public static isNullOrUndefined(value: unknown): value is null | undefined {
return value === null || value === undefined