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,6 +1,6 @@
import { namedNode, quad } from '@rdfjs/data-model';
import arrayifyStream from 'arrayify-stream';
import { Quad } from 'rdf-js';
import type { Quad } from 'rdf-js';
import { translate } from 'sparqlalgebrajs';
import streamifyArray from 'streamify-array';
import { SparqlUpdatePatch } from '../../../../src/ldp/http/SparqlUpdatePatch';