Skip to content

Commit

Permalink
eslint error fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrredo authored Apr 20, 2024
1 parent 92e9265 commit 1c094da
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/lib/blocks/Test Blocks/mutators.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import { BlockShape, BlockType, WarningType } from "$lib/enums/BlockTypes";
import { BlockShape, BlockType } from "$lib/enums/BlockTypes";
import type { BlockDefinition } from "$lib/types/BlockDefinition";
import type { CategoryDefinition } from "$lib/types/CategoryDefinition";
import StatementInput from "$lib/utils/BlockGen/Inputs/StatementInput";
import ValueInput from "$lib/utils/BlockGen/Inputs/ValueInput";
// import AssemblerMutator from "$lib/utils/BlockGen/Mutators/AssemblerMutator";
import Warning from "$lib/utils/BlockGen/Warnings/Warning";

import rgbToHex from "$lib/utils/helpers/rgbToHex";
import AssemblerMutatorV2 from "$lib/utils/BlockGen/Mutators/AssemblerMutatorV2";
import CheckboxMutator from "$lib/utils/BlockGen/Mutators/CheckboxMutator";

const blocks: BlockDefinition[] = [
Expand Down Expand Up @@ -96,7 +94,7 @@ const blocks: BlockDefinition[] = [
helpUrl:

Check failure on line 94 in src/lib/blocks/Test Blocks/mutators.ts

View workflow job for this annotation

GitHub Actions / Run eslint

'args' is defined but never used
`https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_NOT`,
code: (args) => {
return "";
return "${args}";
},
mutator: new CheckboxMutator("hello", [
{
Expand Down

0 comments on commit 1c094da

Please sign in to comment.