Skip to content

Commit

Permalink
test: putout: update fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Nov 28, 2024
1 parent be091a1 commit 661fb6d
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
if (noTrailingComment(path) && (length > 1 || manyLines))
//maybe.print(index !== n || trailingComma, ',');
// maybe.print(index !== n || trailingComma, ',');
print.newline();

if (noTrailingComment(path) && (length > 1 || manyLines))
print.newline();
//maybe.print(index !== n || trailingComma, ',');

// maybe.print(index !== n || trailingComma, ',');
const a = 5;
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import {useForm} from 'react-hook-form';

const {register,
formState: {
const {
register,
formState: {
errors,
},
} = useForm();
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {useForm} from 'react-hook-form';

const {formState: {
const {
formState: {
errors,
}
},
} = useForm();
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {useForm} from 'react-hook-form';

const {formState: {
const {
formState: {
errors,
}
},
} = useForm();
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ onIfStatement({
function onIfStatement({
push: {
a: b,
}
},
}) {}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const {
[hello]: {
world,
}
},
} = abc;

const hello = 'world';
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ const {
a = 0,
b = 0,
},
}
},
} = z;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const {
hello: {
world,
}
},
} = abc;

const hello = 'world';

0 comments on commit 661fb6d

Please sign in to comment.