Skip to content

Commit

Permalink
checkpoint: into main from release/2.5.0 @ b2caac8 (#2543)
Browse files Browse the repository at this point in the history
* Bump qs, @types/qs

* Bump @types/json-bigint

* Bump react-dom, @types/react-dom

* Bump eslint-config-airbnb-typescript, eslint, @typescript/eslint/*

* Bump cross-spawn

* Bump typescript

* Bump rollup

* Bump crowdin/github-action

* npm audit fix

---------

Co-authored-by: Izumi Hoshino <[email protected]>
Co-authored-by: Zlatko Fedor <[email protected]>
  • Loading branch information
3 people authored Dec 9, 2024
1 parent 0c18c1f commit d2c78b7
Show file tree
Hide file tree
Showing 11 changed files with 536 additions and 226 deletions.
6 changes: 5 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,15 @@
// These issues should be decided and reported in typescript config
"@typescript-eslint/no-explicit-any": "off",
// Adding _ will bypass no-used issues
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": true,
"argsIgnorePattern": "^_"
"argsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": ".*"
}
],
// required for TS where string does not satisfy the expected return type of JSX.Element
Expand All @@ -156,6 +158,8 @@
"enforceForJSX": false
}
],
"@typescript-eslint/lines-between-class-members": "off",
"@typescript-eslint/no-throw-literal": "off",
// We do not see the value of this turned on
"class-methods-use-this": "off",
// allow for-of loops
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crowdin-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
passphrase: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_PASSPHRASE }}

- name: crowdin action
uses: crowdin/github-action@v2.2.0
uses: crowdin/github-action@v2.4.0
with:
upload_sources: false
upload_translations: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crowdin-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
secret/data/crowdin project-id-blockchain-gui | CROWDIN_PROJECT_ID;
- name: crowdin action
uses: crowdin/github-action@v2.2.0
uses: crowdin/github-action@v2.4.0
with:
upload_sources: true
upload_translations: false
Expand Down
Loading

0 comments on commit d2c78b7

Please sign in to comment.