Skip to content

Commit

Permalink
fix: move eslint deps to dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
stropitek committed Aug 3, 2023
1 parent 29be2fd commit a262190
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
package-lock=false
@zakodium:registry=https://registry.npmjs.org/
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^18.17.1",
"@zakodium/eslint-config": "^5.1.1",
"eslint": "^8.13.0",
"eslint-config-cheminfo-typescript": "^10.4.0",
"jest": "^27.5.1",
Expand All @@ -49,8 +51,6 @@
"typescript": "^4.6.3"
},
"dependencies": {
"@types/node": "^17.0.25",
"@zakodium/eslint-config": "^5.1.1",
"axios": "^0.26.1",
"immer": "^9.0.12"
},
Expand Down
2 changes: 1 addition & 1 deletion src/roc/RocDocument.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const defaultRocOptions: RocDocumentOptions = {
allowAttachmentOverwrite: true,
};
export default class RocDocument<
ContentType = Record<string, unknown>,
ContentType extends Record<string, any> = Record<string, unknown>,

Check warning on line 22 in src/roc/RocDocument.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected any. Specify a different type
IdType = string,
> {
private request: AxiosInstance;
Expand Down

0 comments on commit a262190

Please sign in to comment.