**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"
]
}
}
}