mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-28 15:26:53 +05:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user