1
0
Fork 0

chore: Added eslint config and workflow

This commit is contained in:
Joost De Cock 2022-09-15 07:53:35 +02:00
parent 56427cc4bd
commit c9f9202c9b
283 changed files with 12225 additions and 10807 deletions

View file

@ -46,7 +46,7 @@ describe('Flip Plugin Tests', () => {
it('Should flip points in a part on their vertical axis', () => {
const part = {
name: 'test',
draft: ({ Point, points, macro, paths, Path, snippets, Snippet }) => {
draft: ({ Point, points, macro }) => {
points.from = new Point(10, 20)
points.to = new Point(40, 230)
macro('flip', {})
@ -63,7 +63,7 @@ describe('Flip Plugin Tests', () => {
it('Should flip points in a path on their vertical axis', () => {
const part = {
name: 'test',
draft: ({ Point, points, macro, paths, Path, snippets, Snippet }) => {
draft: ({ Point, points, macro, paths, Path }) => {
points.from = new Point(10, 20)
points.cp1 = new Point(40, 0)
points.cp2 = new Point(60, 30)