standardize ts-ignore for info graph

This commit is contained in:
Yokozuna59 2023-06-13 15:32:00 +03:00
parent f0b1529727
commit 2a5b122d0c
4 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,4 @@
// @ts-ignore Jison doesn't export types
// @ts-ignore - jison doesn't export types
import { parser } from './parser/info.jison';
import infoDb from './infoDb.js';

View File

@ -1,4 +1,3 @@
/** Created by knut on 15-01-14. */
import { clear } from '../../commonDb.js';
import type { InfoDB } from './infoTypes.js';

View File

@ -1,5 +1,5 @@
import type { DiagramDefinition } from '../../diagram-api/types.js';
// @ts-ignore jison doesn't export types
// @ts-ignore - jison doesn't export types
import parser from './parser/info.jison';
import db from './infoDb.js';
import renderer from './infoRenderer.js';

View File

@ -1,4 +1,3 @@
/** Created by knut on 14-12-11. */
// @ts-ignore - TODO: fix ts error from d3
import { select } from 'd3';
import { log } from '../../logger.js';