**chore: update ESLint rules and reorganize dependencies in package.json**

### Changes:
- Disabled the `@typescript-eslint/no-explicit-any` rule in `cloud-wrapper/package.json`.
- Reformatted ESLint rule configurations for `semi` and `@typescript-eslint/semi`.
- Reorganized dependencies in `package.json` for better readability:
  - Moved `buffer`, `commander`, `omelette`, and `uuid` to the end of the list to match alphabetical order.

### Purpose:
Improved code clarity and maintainability by updating ESLint configurations and reordering dependencies in `package.json`. These adjustments ensure consistent formatting and easier navigation of dependencies.
This commit is contained in:
David Snelling 2025-06-20 10:56:50 -07:00
parent 3dce27e951
commit b9f8466d5d
2 changed files with 14 additions and 7 deletions

View file

@ -65,6 +65,7 @@
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"@typescript-eslint/no-explicit-any": "off",
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
@ -78,8 +79,14 @@
"argsIgnorePattern": "^_"
}
],
"semi": ["error", "never"],
"@typescript-eslint/semi": ["error", "never"]
"semi": [
"error",
"never"
],
"@typescript-eslint/semi": [
"error",
"never"
]
}
}
}

View file

@ -93,16 +93,16 @@
},
"dependencies": {
"@aws-sdk/client-s3": "^3.427.0",
"buffer": "^6.0.3",
"commander": "^14.0.0",
"omelette": "^0.4.17",
"uuid": "^9.0.0",
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-backend-cpu": "^4.22.0",
"@tensorflow/tfjs-converter": "^4.22.0",
"@tensorflow/tfjs-core": "^4.22.0",
"@tensorflow/tfjs-layers": "^4.22.0"
"@tensorflow/tfjs-layers": "^4.22.0",
"buffer": "^6.0.3",
"commander": "^14.0.0",
"omelette": "^0.4.17",
"uuid": "^9.0.0"
},
"prettier": {
"arrowParens": "always",