Skip to content

Commit

Permalink
update eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilianoSanchez committed Nov 21, 2024
1 parent cb330fe commit ad6430e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@
"./src"
],
"tryExtensions": [
".ts"
".ts",
".js"
]
}
},
Expand Down
2 changes: 0 additions & 2 deletions src/cuckoo/bucket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

// eslint-disable-next-line node/no-missing-import
import eq from 'lodash/eq'
// eslint-disable-next-line node/no-missing-import
import indexOf from 'lodash/indexOf'
import * as utils from '../utils'
import {Exportable} from '../exportable'
Expand Down
1 change: 0 additions & 1 deletion src/sketch/min-hash-factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ SOFTWARE.
*/

import {HashFunction, MinHash} from './min-hash'
// eslint-disable-next-line node/no-missing-import
import random from 'lodash/random'

/**
Expand Down
1 change: 0 additions & 1 deletion src/sketch/topk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ SOFTWARE.
import BaseFilter from '../base-filter'
import CountMinSketch from './count-min-sketch'
import {AutoExportable, Field, Parameter} from '../exportable'
// eslint-disable-next-line node/no-missing-import
import sortedIndexBy from 'lodash/sortedIndexBy'

/**
Expand Down

0 comments on commit ad6430e

Please sign in to comment.