mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-26 06:39:57 +00:00
Solves #244 :  Problem was function overloading in the interface caused some weird `typedoc` formatting, so breaking it apart into methods fixed the issue. Also regenerated and updated javascript docs --------- Co-authored-by: Tevin Wang <tevin@cmu.edu>
18 lines
309 B
JavaScript
18 lines
309 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true
|
|
},
|
|
extends: 'standard-with-typescript',
|
|
overrides: [
|
|
],
|
|
parserOptions: {
|
|
project: './tsconfig.json',
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module'
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/method-signature-style": "off",
|
|
}
|
|
}
|