-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Reduce lint exceptions in ctl (#37643)
Fix linting exceptions in `ctl`. ## Automation /test sanity ### 🔍 Cypress test results <!-- This is an auto-generated comment: Cypress test results --> > [!WARNING] > Tests have not run on the HEAD 1f2242a yet > <hr>Fri, 22 Nov 2024 10:06:23 UTC <!-- end of auto-generated comment: Cypress test results --> ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [x] No <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Release Notes - **New Features** - Enhanced backup and restore processes with improved user prompts and error handling. - Added support for optional command-line flags during database imports. - **Bug Fixes** - Improved error handling for various operations, including database exports and imports. - Enhanced logging for backup errors to provide more context. - **Documentation** - Updated user prompts and error messages for clarity during backup and restore operations. - **Tests** - Expanded test coverage for backup functionalities and utility functions to ensure robust error handling and output validation. - **Chores** - Updated dependencies to enhance TypeScript development experience. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
- Loading branch information
Showing
16 changed files
with
145 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,6 @@ | ||
{ | ||
"extends": ["../../../../.eslintrc.base.json"], | ||
"extends": ["../../.eslintrc.json"], | ||
"rules": { | ||
"@typescript-eslint/ban-ts-comment": "off", | ||
"@typescript-eslint/prefer-nullish-coalescing": "off", | ||
"@typescript-eslint/strict-boolean-expressions": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"testing-library/no-debugging-utils": "off", | ||
"@typescript-eslint/no-var-requires": "off", | ||
"padding-line-between-statements": "off", | ||
"no-console": "off", | ||
"@typescript-eslint/promise-function-async": "off", | ||
"@typescript-eslint/no-unused-vars": "off", | ||
"sort-destructure-keys/sort-destructure-keys": "off" | ||
"no-console": "off" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.