1
0
Fork 0

🎨 Updated prettier config

This commit is contained in:
Joost De Cock 2019-08-03 15:03:33 +02:00
parent b8e632998b
commit 6710d76b08
401 changed files with 13193 additions and 15620 deletions

View file

@ -1,13 +1,13 @@
export default part => {
let { Point, points, macro } = part.shorthand();
let { Point, points, macro } = part.shorthand()
points.from = new Point(10, 10);
points.to = new Point(90, 40);
points.from = new Point(10, 10)
points.to = new Point(90, 40)
macro("ld", {
macro('ld', {
from: points.from,
to: points.to
});
})
return part;
};
return part
}