Skip to content

Commit

Permalink
Fix eslint warnings from #51.
Browse files Browse the repository at this point in the history
  • Loading branch information
biancadanforth committed Aug 9, 2019
1 parent c912f13 commit 23f86cf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/demos.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {assert} from 'chai';

import {dom, out, rule, ruleset, type} from '../index';
import {dom, rule, ruleset, type} from '../index';
import {sigmoid, staticDom} from '../utils';


Expand Down
2 changes: 1 addition & 1 deletion test/lhs_tests.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {assert} from 'chai';

import {dom, rule, ruleset, out, type} from '../index';
import {dom, rule, ruleset, type} from '../index';
import {staticDom} from '../utils';


Expand Down
2 changes: 1 addition & 1 deletion test/ruleset_tests.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {assert} from 'chai';

import {distance} from '../clusters';
import {and, dom, nearest, out, props, rule, ruleset, score, type} from '../index';
import {and, dom, nearest, props, rule, ruleset, score, type} from '../index';
import {domSort, sigmoid, staticDom} from '../utils';


Expand Down
2 changes: 1 addition & 1 deletion test/utils_tests.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {assert} from 'chai';
import {dom, out, rule, ruleset, score, type} from '../index';
import {dom, rule, ruleset, score, type} from '../index';
import {NiceSet, toposort, staticDom, attributesMatch} from '../utils';


Expand Down

0 comments on commit 23f86cf

Please sign in to comment.