lint: enable no-extraneous-dependencies rule

This also uses the new `import type` syntax for importing rdf-js types,
as it is required for making this new linter rule pass.

Closes #132
This commit is contained in:
Ruben Taelman
2020-09-07 08:34:15 +02:00
committed by Joachim Van Herwegen
parent 7bf4c7cb7c
commit 0ed1ae539d
7 changed files with 7 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
import { Readable } from 'stream';
import { defaultGraph } from '@rdfjs/data-model';
import { Store } from 'n3';
import { BaseQuad } from 'rdf-js';
import type { BaseQuad } from 'rdf-js';
import { someTerms } from 'rdf-terms';
import { Algebra } from 'sparqlalgebrajs';
import { SparqlUpdatePatch } from '../../ldp/http/SparqlUpdatePatch';