Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ShacharHarshuv committed Oct 8, 2024
1 parent be08af7 commit 6858963
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions libs/plugin/src/generators/convert-outputs/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,15 +260,9 @@ export async function convertOutputsGenerator(
if (Node.isPropertyDeclaration(node)) {
const outputDecorator = node.getDecorator('Output');
if (outputDecorator) {
let {
name,
isReadonly,
docs,
scope,
type,
hasOverrideKeyword,
initializer,
} = node.getStructure();
const { name, isReadonly, docs, scope, type, hasOverrideKeyword } =
node.getStructure();
let { initializer } = node.getStructure();

if (!initializer) {
// look for constructor initializer
Expand Down

0 comments on commit 6858963

Please sign in to comment.