Skip to content

Commit

Permalink
Improve linting in generator
Browse files Browse the repository at this point in the history
  • Loading branch information
msujew committed Sep 12, 2023
1 parent 40d4118 commit 2640b8b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ export abstract class AbstractGenerator {
}

protected prettyStringify(object: object): string {
// eslint-disable-next-line no-null/no-null
return JSON.stringify(object, null, 4);
return JSON.stringify(object, undefined, 4);
}

}

0 comments on commit 2640b8b

Please sign in to comment.