Skip to content

Commit

Permalink
Fixed linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rhazn committed Jul 26, 2023
1 parent 8cf2b47 commit f08f918
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/docs/generator/src/user-doc-generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
//
// SPDX-License-Identifier: AGPL-3.0-only

import { strict as assert } from 'assert';

import {
BlockMetaInformation,
ConstraintMetaInformation,
Expand All @@ -14,7 +16,6 @@ import {
PrimitiveValuetype,
PropertySpecification,
} from '@jvalue/jayvee-language-server';
import { strict as assert } from 'assert';

export class UserDocGenerator
implements
Expand All @@ -39,6 +40,7 @@ that fullfil [Constrains](./core-concepts#constraints).`.trim(),
.heading('Available built-in valuetypes', 1);

Object.entries(valueTypes)
// eslint-disable-next-line @typescript-eslint/no-unused-vars
.filter(([_, valueType]) => valueType.isUserExtendable())
.forEach(([name, valueType]) => {
assert(
Expand Down

0 comments on commit f08f918

Please sign in to comment.