Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lpatiny committed Nov 13, 2024
1 parent 42da80f commit 9c2c0d2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 22 deletions.
1 change: 0 additions & 1 deletion .eslintrc.yml

This file was deleted.

15 changes: 4 additions & 11 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
import cheminfo from 'eslint-config-cheminfo-typescript';
import globals from 'globals';

export default [
...cheminfo,
{
languageOptions: {
globals: {
// ...globals.node,
},
},
rules: {
// "unicorn/no-object-as-default-parameter": "off",
}
}
]
languageOptions: {},
rules: {},
},
];
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,22 +41,22 @@
},
"homepage": "https://github.com/mljs/signal-processing#readme",
"devDependencies": {
"@vitest/coverage-v8": "^2.1.2",
"eslint": "^9.12.0",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^9.14.0",
"eslint-config-cheminfo-typescript": "^16.0.0",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-json-schema": "^0.65.1",
"vitest": "^2.1.2"
"vitest": "^2.1.4"
},
"dependencies": {
"baselines": "^1.1.9",
"cheminfo-types": "^1.8.0",
"cheminfo-types": "^1.8.1",
"ml-gsd": "^12.1.8",
"ml-savitzky-golay-generalized": "^4.2.0",
"ml-spectra-processing": "^14.5.3"
"ml-spectra-processing": "^14.6.2"
}
}
10 changes: 5 additions & 5 deletions src/filterMatrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ export function filterMatrix(
* throw new Error(`Unknown filter: ${filter.name}`);
* }
* result = filterFct(result.data, filter.options);
* logs.push({
name: filter.name,
time: Date.now() - start,
});
}
* logs.push({
* name: filter.name,
* time: Date.now() - start,
* });
* }
*/

return { logs, data: result.data };
Expand Down

0 comments on commit 9c2c0d2

Please sign in to comment.